Advertisement
Guest User

LaTeX Thesis Template

a guest
Jan 17th, 2018
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.00 KB | None | 0 0
  1. \documentclass{kththesis}
  2.  
  3. \usepackage{blindtext} % This is just to get some nonsense text in this template, can be safely removed
  4.  
  5. \usepackage{csquotes} % Recommended by biblatex
  6. \usepackage[backend=bibtex]{biblatex}
  7. \addbibresource{references.bib} % The file containing our references, in BibTeX format
  8.  
  9.  
  10. \title{This is the English title}
  11. \alttitle{Detta är den svenska översättningen av titeln}
  12. \author{Osquar Student}
  13. \email{osquar@kth.se}
  14. \supervisor{Lotta Larsson}
  15. \examiner{Lennart Bladgren}
  16. \programme{Master in Computer Science}
  17. \school{School of Computer Science and Communication}
  18. \date{\today}
  19.  
  20.  
  21. \begin{document}
  22.  
  23. % Frontmatter includes the titlepage, abstracts and table-of-contents
  24. \frontmatter
  25.  
  26. \titlepage
  27.  
  28. \begin{abstract}
  29.  English abstract goes here.
  30.  
  31.  \blindtext
  32. \end{abstract}
  33.  
  34.  
  35. \begin{otherlanguage}{swedish}
  36.  \begin{abstract}
  37.    Träutensilierna i ett tryckeri äro ingalunda en oviktig faktor,
  38.    för trevnadens, ordningens och ekonomiens upprätthållande, och
  39.    dock är det icke sällan som sorgliga erfarenheter göras på grund
  40.    af det oförstånd med hvilket kaster, formbräden och regaler
  41.    tillverkas och försäljas Kaster som äro dåligt hopkomna och af
  42.    otillräckligt.
  43.  \end{abstract}
  44. \end{otherlanguage}
  45.  
  46.  
  47. \tableofcontents
  48.  
  49.  
  50. % Mainmatter is where the actual contents of the thesis goes
  51. \mainmatter
  52.  
  53.  
  54. \chapter{Introduction}
  55.  
  56. We use the \emph{biblatex} package to handle our references.  We therefore use the
  57. command \texttt{parencite} to get a reference in parenthesis, like this
  58. \parencite{heisenberg2015}.  It is also possible to include the author
  59. as part of the sentence using \texttt{textcite}, like talking about
  60. the work of \textcite{einstein2016}.
  61.  
  62. \Blindtext
  63.  
  64. \section{Research Question}
  65.  
  66. \blindtext
  67.  
  68. \chapter{Methods}
  69.  
  70. \blindtext
  71.  
  72. \printbibliography[heading=bibintoc] % Print the bibliography (and make it appear in the table of contents)
  73.  
  74. \appendix
  75.  
  76. \chapter{Unnecessary Appended Material}
  77.  
  78. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement