Skip to content

Commit

Permalink
Added run.sh and thesis.tex
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivandervelde committed Jan 15, 2018
1 parent 45064df commit bc1a3e9
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
6 changes: 6 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
latex thesis.tex
bibtex thesis
latex thesis.tex
latex thesis.tex
dvips -t a5 thesis.dvi
ps2pdf thesis.ps
48 changes: 48 additions & 0 deletions thesis.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
\documentclass[10pt]{book}
\usepackage[a5paper]{geometry}
\usepackage{mathpazo} % font style
\linespread{1.05} % Palatino needs more leading (space between lines)
\renewcommand{\familydefault}{\sfdefault}
\input{usepackages.tex} % load required packages
\raggedbottom % prevent spreading out paragraphs with lots of whitespace inbetween

\begin{document}

\pagestyle{empty}

\input{cover.tex}

\setcounter{page}{1}

\input{preamble.tex}

\tableofcontents

\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE]{\leftmark}
\fancyhead[RO]{\rightmark}
\fancyfoot[LE,RO]{\thepage}

\input{introduction.tex}
\input{xgap.tex}
\input{xqtl.tex}
\input{wormqtl.tex}
\input{caddmmr.tex}
\input{gavin.tex}
\input{frameworkforgenomics.tex}
\input{discussion.tex}

\bibliographystyle{plain}

\cleardoublepage
\leftwatermark{}\rightwatermark{} % stop printing the thumb indexes
\phantomsection\bibliography{references}{}
\cleardoublepage\phantomsection\listoftables
\cleardoublepage\phantomsection\listoffigures

\input{appendix.tex}

\input{back.tex}

\end{document}

0 comments on commit bc1a3e9

Please sign in to comment.