initial commit

This commit is contained in:
Gabriel Scherer 2020-05-29 10:22:56 +02:00
commit d265153007
10 changed files with 1502 additions and 0 deletions

14
.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
*.aux
*.log
*.pdf
*.bbl
*.blg
*.out
*.fdb_latexmk
*.fls
*.snm
*.toc
*.vrb
*.nav
*.rev
*~

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
LATEXMK=latexmk -pdf -bibtex
.PHONY: mk
mk:
$(LATEXMK)
clean:
latexmk -c
rm -f *.{log,bbl,nav,rev,snm,vrb,vtc}
.PHONY: all clean

0
biblio.bib Normal file
View File

10
mybibliography.sty Normal file
View File

@ -0,0 +1,10 @@
\usepackage{natbib}
\usepackage{url}
% loading 'url' here ensures that URLs are broken into several lines
% in the bibliography (see natbib documentation).
\bibliographystyle{plainnaturl}
\citestyle{authoryear}
% [Gabriel] I have a strong preference for author-year citation style,
% with all authors listed (\citet*, \citep*)

2
mygeometry.sty Normal file
View File

@ -0,0 +1,2 @@
\usepackage{a4}
\usepackage[margin=2.5cm]{geometry}

3
myhyperref.sty Normal file
View File

@ -0,0 +1,3 @@
\usepackage{hyperref}
\usepackage[dvipsnames]{xcolor}
\hypersetup{breaklinks=true,colorlinks=true,citecolor=OliveGreen,urlcolor=Plum}

17
mylistings.sty Normal file
View File

@ -0,0 +1,17 @@
\usepackage{listings}
\lstset{
mathescape=true,
language=[Objective]{Caml},
basicstyle=\ttfamily,
extendedchars=true,
showstringspaces=false,
aboveskip=\smallskipamount,
% belowskip=\smallskipamount,
columns=fullflexible,
moredelim=**[is][\color{blue}]{/*}{*/},
moredelim=**[is][\color{green!60!black}]{/!}{!/},
moredelim=**[is][\color{orange}]{/(}{)/},
moredelim=[is][\color{red}]{/[}{]/},
xleftmargin=1em,
}
\lstset{aboveskip=0.4ex,belowskip=0.4ex}

1
notations.sty Normal file
View File

@ -0,0 +1 @@
\newcommand{\Inferno}{Inferno}

1445
plainnaturl.bst Normal file

File diff suppressed because it is too large Load Diff

0
workshop.tex Normal file
View File