summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-06-08 22:11:04 +0000
committerKarl Berry <karl@freefriends.org>2006-06-08 22:11:04 +0000
commita3a065919f95e084a7defca6c7138e638e834fed (patch)
tree1847b561f69cc460b6d81b0e405960f3ef318adb /Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex
parent7cd7e5936583d8101bad9884f27de532d1d6cebe (diff)
york-thesis
git-svn-id: svn://tug.org/texlive/trunk@1673 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex')
-rw-r--r--Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex114
1 files changed, 114 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex b/Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex
new file mode 100644
index 00000000000..7829eadff9f
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/york-thesis/york-thesis-Template.tex
@@ -0,0 +1,114 @@
+%%
+%% Copyright (C) 2005 by Norm Gall <gall@spookyhill.net>
+%%
+%% This file may be distributed and/or modified under the conditions of
+%% the LaTeX Project Public License, either version 1.3 of this license
+%% or (at your option) any later version. The latest version of this
+%% license is in:
+%%
+%% http://www.latex-project.org/lppl.txt
+%%
+%% and version 1.3 or later is part of all distributions of LaTeX version
+%% 2003/06/01 or later.
+%%
+%
+% York University FGS thesis/dissertation template
+% for use with york-thesis.cls (v3.0)
+%
+% You really should read the documentation for the class file
+% (york-thesis.pdf) to see what all of the additional macros and
+% booleans do. As well, many of the macros you are used to using
+% behave differently in this class.
+%
+% You may, of course, remove all comments from your document.
+%
+\documentclass[draft]{york-thesis}
+
+%========== citation setup =================
+\usepackage[authoryear,sort]{natbib} % I use natbib, but you can use
+ % any citation format; the class file
+ % is agnostic about citation styles.
+\bibpunct[, ]{(}{)}{,}{a}{}{,} % This line configures natbib to use
+ % CMoS in-line citation style
+
+%========= package setup ================
+\setboolean{masters}{true} % set true for a Master's thesis;
+ % false for a PhD dissertation
+\setboolean{hasfigures}{false} % set true if you have figures
+\setboolean{hastables}{false} % set true of you have tables
+
+\title{The title} % this is the full title of your work
+\author{I. M. N. Author} % this is your name exactly as you want it
+ % to appear everywhere in your work.
+\department{Department} % this is the name of the programme in which
+ % you are attempting your degree
+\masterof{Arts} % this is the type of Master's degree you
+ % are attempting. If the boolean masters is
+ % false, this has no effect.
+\degreename{Magisteriate} % put the actual name of the degree you are
+ % attempting
+\date{September 1995} % this is the month and year of defence
+
+%========== preliminary matter =================
+%
+% Create these in separate files; trust me
+%
+% If you do not have one or more of these commands in your document,
+% simply delete the line.
+%
+% The following macros need appear in no particular order, but if you
+% are going to use them, they have to be defined before you begin your
+% document environment.
+%
+\abstractfile{abstract.tex}
+\dedicationfile{dedication.tex}
+\acknowledgementsfile{acknowledgements.tex}
+\prefacefile{preface.tex}
+\abbreviationsfile{abbreviations.tex}
+%
+% Your committee members list has to be an enumerated list.
+%
+\committeememberslist{
+ \begin{enumerate}
+ \item First Examiner
+ \item Second Examiner
+ \item Third Examiner
+ \item Fourth Examiner
+ \item Fifth Examiner
+ \item Sixth Examiner
+ \end{enumerate}}
+
+%============ document begins ==================
+%
+\begin{document}
+
+\makefrontmatter
+
+%
+% the include commands for chapters go here
+%
+
+%\include{chapter-1}
+%\include{chapter-2}
+%\include{chapter-3}
+%\include{chapter-4}
+%\include{chapter-5}
+
+%\appendix
+%\include{appendix-a}
+%\include{appendix-b}
+%\include{appendix-c}
+
+\spacing{1}
+\bibliographystyle{plainnat} % the class file is agnostic as to which
+ % bibliographic style you prefer. You
+ % should be able to use any style that
+ % conforms to what you want to see in the
+ % bibliography
+\bibliography{thesis} % you do not have to use BibTeX to construct
+ % your bibliography; you can do it here by hand
+ % just as you would in any other document, if
+ % you wish.
+
+\end{document}
+\end