main.tex 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. \documentclass[
  2. utf8,% More capable input encoding than latin-1.
  3. % parskip,% For vertical whitespace between paragraphs. This comes down to more than just using parskip.sty, so it's better to use this class option.
  4. % S5MP % If you intend to really use margin paragraphs (not recommended!).
  5. % crop,% Produce output with crop marks and paper size A4. Liu-Tryck should like this. Automatically adds information, including the physical page number, at the top of each page.
  6. % Add option 'noInfo' to suppress the info at the top of each page when using option 'crop'.
  7. % Font options: 'kp' (default), 'times', 'lm'. The KpFonts (loaded using 'kp'), is the most complete font among the provided options. Among other, it supports slanted small caps. See rtthesis.cls for more details regarding the font options.
  8. largesmallcaps,intlimits,widermath,% Good options to KpFonts.
  9. sharecounter,nobreak,definition=marks,% See comments in the results chapter of this document for more information on these options!
  10. numbers, % If you want to cite references by numbers, use this option.
  11. noparts, % Use option 'noparts' if you do not make use of part divisions.
  12. table % Make xcolor work?
  13. ]{rtthesis}
  14. \usepackage{mythesis}
  15. \usepackage{tabularx}
  16. \usepackage{float}
  17. \usepackage{subcaption}
  18. %%% Makes DOI numbers to links
  19. \usepackage{doi}
  20. %%% The footnotes are renumbered for each page
  21. \usepackage[perpage]{footmisc}
  22. %%& Make bold mathmode available
  23. \usepackage{bm}
  24. %%% Make it possible to change size of tables
  25. \usepackage{adjustbox}
  26. %%% Use SI units
  27. \usepackage{siunitx}
  28. %%% For consistent formatting of lengths and other physical quantities.
  29. %\RequirePackage[squaren]{SIunits}
  30. %%% If it is still a draft
  31. \usepackage[printwatermark]{xwatermark}
  32. \usepackage[]{xcolor}
  33. \newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=-80]{DRAFT}
  34. \newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=80]{DRAFT}
  35. %% Enable use of svg
  36. \usepackage{svg}
  37. %%% Tell \includegraphics where to search for files.
  38. \graphicspath{{fig/}{fig/measurements/}}
  39. \setlength{\parindent}{0em}
  40. \setlength{\parskip}{1em}
  41. \begin{document}
  42. \selectlanguage{english}
  43. \frontmatter
  44. \maketitle
  45. % \begin{abstract}[swedish]
  46. % \input{abstract-swe}
  47. % \end{abstract}
  48. \begin{abstract}[english]
  49. \input{abstract}
  50. \end{abstract}
  51. \include{acknowledgments}
  52. \tableofcontents
  53. \newpage
  54. \listoffigures
  55. \newpage
  56. \listoftables
  57. \include{notation}
  58. \mainmatter
  59. \include{introduction}
  60. \include{theory}
  61. \include{methods}
  62. \include{results}
  63. \include{discussion}
  64. \include{conclusion}
  65. %\bibliography{IEEEfull,myrefs}
  66. \bibliography{myrefs}
  67. \part*{Appendix}
  68. \appendix
  69. \include{detaljer}
  70. \clearemptydoublepage
  71. \backmatter
  72. \printindex
  73. \end{document}