Advertisement
Guest User

main.tex

a guest
Oct 23rd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.93 KB | None | 0 0
  1. % UCL Thesis LaTeX Template
  2. % (c) Ian Kirker, 2014
  3. %
  4. % This is a template/skeleton for PhD/MPhil/MRes theses.
  5. %
  6. % It uses a rather split-up file structure because this tends to
  7. % work well for large, complex documents.
  8. % We suggest using one file per chapter, but you may wish to use more
  9. % or fewer separate files than that.
  10. % We've also separated out various bits of configuration into their
  11. % own files, to keep everything neat.
  12. % Note that the \input command just streams in whatever file you give
  13. % it, while the \include command adds a page break, and does some
  14. % extra organisation to make compilation faster. Note that you can't
  15. % use \include inside an \include-d file.
  16. % We suggest using \input for settings and configuration files that
  17. % you always want to use, and \include for each section of content.
  18. % If you do that, it also means you can use the \includeonly statement
  19. % to only compile up the section you're currently interested in.
  20. % You might also want to put figures into their own files to be \input.
  21.  
  22. % For more information on \input and \include, see:
  23. % http://tex.stackexchange.com/questions/246/when-should-i-use-input-vs-include
  24.  
  25.  
  26. % Formatting rules for theses are here:
  27. % http://www.ucl.ac.uk/current-students/research_degrees/thesis_formatting
  28. % Binding and submitting guidelines are here:
  29. % http://www.ucl.ac.uk/current-students/research_degrees/thesis_binding_submission
  30.  
  31. % This package goes first and foremost, because it checks all
  32. % your syntax for mistakes and some old-fashioned LaTeX commands.
  33. % Note that normally you should load your documentclass before
  34. % packages, because some packages change behaviour based on
  35. % your document settings.
  36. % Also, for those confused by the RequirePackage here vs usepackage
  37. % elsewhere, usepackage cannot be used before the documentclass
  38. % command, while RequirePackage can. That's the only functional
  39. % difference.
  40. \RequirePackage[l2tabu, orthodox]{nag}
  41.  
  42. % ------ Main document class specification ------
  43. % The draft option here prevents images being inserted,
  44. % and adds chunky black bars to boxes that are exceeding
  45. % the page width (to show that they are).
  46. % The oneside option can optionally be replaced by twoside if
  47. % you intend to print double-sided. Note that this is
  48. % *specifically permitted* by the UCL thesis formatting
  49. % guidelines.
  50. %
  51. % Valid options in terms of type are:
  52. % phd
  53. % mres
  54. % mphil
  55. %\documentclass[12pt,phd,draft,a4paper,oneside]{ucl_thesis}
  56. \documentclass[12pt,phd,a4paper,twoside,final]{ucl_thesis}
  57.  
  58.  
  59. % Package configuration:
  60. % LaTeX uses "packages" to add extra commands and features.
  61. % There are quite a few useful ones, so we've put them in a
  62. % separate file.
  63. \input{MainPackages}
  64.  
  65. % Sets up links within your document, for e.g. contents page entries
  66. % and references, and also PDF metadata.
  67. % You should edit this!
  68. \input{LinksAndMetadata}
  69.  
  70. % And then some settings in separate files.
  71. \input{FloatSettings} % For things like figures and tables
  72. \input{BibSettings} % For bibliographies
  73.  
  74. % Title Settings
  75. \setcounter{secnumdepth}{0}
  76. \setcounter{tocdepth}{3}
  77.  
  78. % Setup editors for track changes
  79. %\definechangesauthor[name={Richard Gunning},color=red]{RG}
  80. %\definechangesauthor[name={Tiia},color=green]{TS}
  81. %\definechangesauthor[name={Sarah},color=blue]{SH}
  82.  
  83. %%% Available Track Changes Commands
  84. %for added text: \added[id=<id>, remark=<remark>]{text}
  85. %for deleted text: \deleted[id=<id>, remark=<remark>]{text}
  86. %for replaced text: \replaced[id=<id>, remark={remark}]{new text}{old text}
  87.  
  88. \title{Memory of the Third Reich in Hitler Youth Memoirs}
  89. \author{Tiia Sahrakorpi}
  90. \department{Department of German}
  91.  
  92. %\makeindex
  93.  
  94.  
  95. \begin{document}
  96.  
  97.  
  98.  
  99. %\nobibliography*
  100. % This is a dumb trick that works with the bibentry package to let
  101. % you put bibliography entries whereever you like.
  102. % I used this to put references to papers a chapter's work was
  103. % published in at the end of that chapter.
  104. % For more information, see: http://stefaanlippens.net/bibentry
  105.  
  106. % If you haven't finished making your full BibTex file yet, you
  107. % might find this useful -- it'll just replace all your
  108. % citations with little superscript notes.
  109. % Uncomment to use.
  110. %\renewcommand{\cite}[1]{\emph{\textsuperscript{[#1]}}}
  111.  
  112. % At last, content! Remember filenames are case-sensitive and
  113. % *must not* include spaces.
  114.  
  115. %\include{Preamble}
  116. \include{Introduction}
  117. \include{Chapter2}
  118. \include{Chapter3}
  119. \include{Chapter4}
  120. \include{Chapter5}
  121. \include{Chapter6}
  122. %\include{Conclusions}
  123.  
  124. %\include{Appendices}
  125. % You could separate these out into different files if you have
  126. % particularly large appendices.
  127. %\include{nocite}
  128. %\begin{singlespace}
  129. %\chapter{Bibliography}
  130. %\printbibliography[keyword={iq436},heading={memoir},title={Published Life Narratives}]
  131. %\printbibliography[notkeyword={iq436},heading={secondary},title={Secondary Sources}]
  132. %\printindex
  133. %\end{singlespace}
  134. % All done. \o/
  135. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement