diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/york-thesis/sample-thesis/sample-thesis.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/york-thesis/sample-thesis/sample-thesis.tex | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/york-thesis/sample-thesis/sample-thesis.tex b/Master/texmf-dist/doc/latex/york-thesis/sample-thesis/sample-thesis.tex new file mode 100644 index 00000000000..75d42118328 --- /dev/null +++ b/Master/texmf-dist/doc/latex/york-thesis/sample-thesis/sample-thesis.tex @@ -0,0 +1,80 @@ +% +% York University FGS thesis/dissertation template +% for use with york-thesis.cls (v1.8) +% +% The reference for this file is "Guidelines for the Preparation and +% Examination of Theses and Dissertations". This is available in +% each Graduate Programme Office as well as in the FGS Thesis Office. +% +% There are a few decisions I made: +% a) The type size in both draft and final is set as 12pt +% b) The paper type is set as letterpaper +% c) Footnotes, quotes, and quotations are set single spaced +% in final mode. This is an option in the FGS guidelines. +% You can change this in the .cls file if you +% really want double spaced text in these environments +% +% options: final: generates depositable document according to FGS regs +% draft: wider margins, single spaced text [default setting] +% +\documentclass[final]{york-thesis} + +\setboolean{masters}{false} % set false for PhD degree +\setboolean{hasfigures}{false} +\setboolean{hastables}{false} + +\title{``A PEARL OF GREAT PRICE'': s\\ MYTHICAL STATUES AND GRIEVOUS BODILY HARM} +\author{Nigel Bailey} +\department{Ancient Studies} +\masterof{Arts} % set to `Arts' or `Science' +\date{September 2004} % this is the month and year of defence + +% Some helpful settings +\setcounter{tocdepth}{1} % table of contents inclusion level + +% If you really want footnotes to reset to 0 at the beginning of each +% chapter, uncomment the following command: +% +% \def\resetfootnote{\setcounter{footnote}{0}} + +%========== preliminary matter ================= +% +% Create these in separate files; trust me +% + +\abstractfile{abstract.tex} +\acknowledgementsfile{acknowledgements.tex} + +%============ document control ================== +%\includeonly{Chapter-1} +%\includeonly{Chapter-2} +%\includeonly{Chapter-3} +%\includeonly{Chapter-4} +%\includeonly{Chapter-5} + +%============ document begins ================== +% +\begin{document} + +\makefrontmatter + +% +% include commands for chapters here +% + +\include{chapter-1} +%\include{chapter-2} +%\include{chapter-3} +%\include{chapter-4} +%\include{chapter-5} + +\spacing{1} % I prefer single spaced bibliographies +\bibliographystyle{apalike} +\bibliography{sample-thesis} + +%\appendix % if you have appendices, they go here +%\include{appendix-a} +%\include{appendix-b} +%\include{appendix-c} +\end{document} +\end |