-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
45064df
commit bc1a3e9
Showing
2 changed files
with
54 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,6 @@ | ||
latex thesis.tex | ||
bibtex thesis | ||
latex thesis.tex | ||
latex thesis.tex | ||
dvips -t a5 thesis.dvi | ||
ps2pdf thesis.ps |
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,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} |