-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 500c686
Showing
44 changed files
with
16,116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Haskell | ||
dist | ||
dist-* | ||
newdist | ||
cabal-dev | ||
newdist | ||
*.o | ||
*.hi | ||
*.hie | ||
*.chi | ||
*.chs.h | ||
*.dyn_o | ||
*.dyn_hi | ||
.hpc | ||
.hsenv | ||
.cabal-sandbox/ | ||
cabal.sandbox.config | ||
*.prof | ||
*.aux | ||
*.hp | ||
*.eventlog | ||
.stack-work/ | ||
cabal.project.local | ||
cabal.project.local~ | ||
.HTF/ | ||
.ghc.environment.* | ||
.dir-locals.el | ||
|
||
|
||
# LaTeX | ||
*.aux | ||
*.loa | ||
*.lof | ||
*.lol | ||
*.lot | ||
*.toc | ||
*.out | ||
*.log | ||
*.ptb | ||
*.bbl | ||
*.blg | ||
*.log | ||
*.ptb | ||
*.xml | ||
*.bcf | ||
*.hi | ||
*.o | ||
*.fdb_latexmk | ||
*.fls | ||
.auctex-auto/ | ||
*.tdo | ||
*.tex | ||
|
||
# Jupyter | ||
.ipynb_checkpoints | ||
__pycache__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
SHELL := /bin/bash | ||
|
||
SOURCES = $(wildcard *.tex) | ||
TARGETS = $(patsubst %.tex, %.pdf, ${SOURCES}) | ||
|
||
TEXMFLOCAL = "/home/crypto/texmf" | ||
|
||
${TARGETS} : %.pdf : %.tex $(wildcard %.bib) | ||
@for i in `seq 3` ; do \ | ||
TEXMFLOCAL="${TEXMFLOCAL}" pdflatex ${*} ; \ | ||
if grep -q "bibliography" ${*}.tex ; then \ | ||
TEXMFLOCAL="${TEXMFLOCAL}" bibtex ${*} ; \ | ||
fi ; \ | ||
done | ||
|
||
all : ${TARGETS} | ||
|
||
clean : | ||
@rm -f *.{aux,bbl,blg,loa,lof,log,lol,lot,nav,out,snm,toc,fls,fdb_latexmk,tdo,sta,ptb} | ||
|
||
spotless : clean | ||
@rm -f ${TARGETS} | ||
|
||
.DEFAULT_GOAL := all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# MEng Thesis | ||
This is my thesis that I completed for my Computer Science MEng at University of Bristol. | ||
|
||
## Install build system | ||
|
||
Install from [RileyEv/lhs2tex-build](https://github.com/RileyEv/lhs2tex-build) | ||
|
||
## Build | ||
|
||
Now build the project with the command | ||
|
||
``` sh | ||
lhs2tex-build | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.aux | ||
*.tex |
Oops, something went wrong.