diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/nddiss/template.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/nddiss/template.tex | 83 |
1 files changed, 54 insertions, 29 deletions
diff --git a/Master/texmf-dist/doc/latex/nddiss/template.tex b/Master/texmf-dist/doc/latex/nddiss/template.tex index b8f0a7d6cfe..068289c9f01 100644 --- a/Master/texmf-dist/doc/latex/nddiss/template.tex +++ b/Master/texmf-dist/doc/latex/nddiss/template.tex @@ -33,42 +33,60 @@ %% ============================================================== %% \ProvidesFile{template.tex} - [2005/07/27 v3.0 ^^J% - Template file for NDdiss2e class by Sameer Vijay^^J] + [2016/10/16 v3.2016% + Template file for NDdiss2e class] \documentclass[draft]{nddiss2e} - % Available options are - % (a) draft + 10pt/11pt/12pt + twoadvisors + textrefs - % (b) review + noinfo + twoadvisors + textrefs - % (c) final + noinfo + twoadvisors + textrefs - + % One of the options draft, review, final must be chosen. + % One of the options textrefs or numrefs should be chosen + % to specify if you want numerical or ``author-date'' + % style citations. + % Other available options are: + % 10pt/11pt/12pt (available with draft only) + % twoadvisors + % noinfo (should be used when you compile the final time + % for formal submission) + % sort (sorts multiple citations in the order that they're + % listed in the bibliography) + % compress (compresses numerical citations, e.g. [1,2,3] + % becomes [1-3]; has no effect when used with + % the textrefs option) + % sort&compress (sorts and compresses numerical citations; + % is identical to sort when used with textrefs) \begin{document} -\frontmatter % All the items before Chapter 1 go in ``frontmatter'' +\frontmatter % All the items before Chapter 1 go in ``frontmatter'' + +\title{ Title of Work } % Title -\title{ } % Title of Work -\author{ } % Author's name -\work{ } % ``Dissertation'' or ``Thesis'' -\degprior{ } % All prior degrees -\degaward{ } % Degree you're aiming for -\advisor{ } % Advisor's name - % \secondadvisor{ } % Second advisor, if used option ``twoadvisors'' -\department{ } % Name of the department +\author{ Jane Doe } % Author's name +\work{ Dissertation } % ``Dissertation'' or ``Thesis'' +\degaward{ Doctor of Philosophy } % Degree you're aiming for. + % Should be one of the following options: + % ``Doctor of Philosophy'' (do NOT include ``in Subject'') + % ``Master of Science \\ in \\ Subject'' +\advisor{ John Public } % Advisor's name + % \secondadvisor{ } % Second advisor, if used option ``twoadvisors'' +\department{ } % Name of the department -\maketitle % The title page is created now +\maketitle % The title page is created now - % \copyrightholder{ } % If you're not the copyright holder - % \copyrightyear{ } % If the copyright is not for the current year - % \makecopyright % If not making your work public domain - % uncomment out \makecopyright - % \makepublicdomain % Uncomment this to make your work public domain + % You must use either the \makecopyright option or the \makepublicdomain option. + % \copyrightholder{ } % If you're not the copyright holder + % \copyrightyear{ } % If the copyright is not for the current year + % \makecopyright % If not making your work public domain + % uncomment out \makecopyright + % \makepublicdomain % Uncomment this to make your work public domain + % Including an abstract is optional for a master's thesis, and required for a + % doctoral dissertation. % \begin{abstract} % \end{abstract} - % % Either place the text between begin/end, or - % \include{abstract} % put it in a file to be included + % % Either place the text between begin/end, or + % \include{abstract} % put it in a file to be included + % Including a dedication is optional. % \renewcommand{\dedicationname}{\mbox{}} % Replace \mbox{} if you want - % something else + % something else. % \begin{dedication} % \end{dedication} % % Use one of the two choices to add dedication text @@ -78,20 +96,24 @@ \listoffigures \listoftables + % Including a list of symbols is optional. %% \renewcommand{\symbolsname}{newsymname} % Replace ``newsymname'' with - % the name you want, and uncomment + % the name you want, and uncomment % \begin{symbols} % \end{symbols} % % Use one of the two choices to add symbols text % \include{symbols} + % Including a preface is optional. %% \renewcommand{\prefacename}{ } % If you want another Preface name, add - % something else, and uncomment + % something else, and uncomment. % \begin{preface} % \end{preface} % % Use one of the two choices to add preface text % \include{preface} + % Including an acknowledgements section may or may not be optional. It's hard to + % tell from the information available in Spring 2013. %% \renewcommand{\acknowledgename}{ } % If you want another Acknowledgement name % add something else, and uncomment % \begin{acknowledge} @@ -102,20 +124,23 @@ \mainmatter % Place the text body here. % \include{chapter-one} + % Begin each chapter with \chapter{Title}. \appendix % If you have appendices, add them here. - % Begin each one with \chapter{title} as before- the \appendix command takes + % Begin each one with \chapter{TITLE} as before. The \appendix command takes % care of renaming chapter headings and creates a new page in the Table of % Contents for them. % \include{appendix-one} \backmatter % Place for bibliography and index -\bibliographystyle{nddiss2e} % Use the ``nddiss2e'' biblio-style + +\bibliographystyle{nddiss2e} \bibliography{ } % input the bib-database file name + \end{document} %% |