main.tex 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. %% For highlighting using \hl
  27. \usepackage{color,soul}
  28. %%% Use SI units
  29. \usepackage{siunitx}
  30. %%% For consistent formatting of lengths and other physical quantities.
  31. %\RequirePackage[squaren]{SIunits}
  32. %%% If it is still a draft
  33. \usepackage[printwatermark]{xwatermark}
  34. \usepackage[]{xcolor}
  35. \newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=-80]{DRAFT}
  36. \newwatermark[allpages,color=red!10,angle=45,scale=2,xpos=0,ypos=80]{DRAFT}
  37. %% Enable use of svg
  38. \usepackage{svg}
  39. %%% Tell \includegraphics where to search for files.
  40. \graphicspath{{fig/}{fig/measurements/}}
  41. \setlength{\parindent}{0em}
  42. \setlength{\parskip}{1em}
  43. \begin{document}
  44. \selectlanguage{english}
  45. \frontmatter
  46. \maketitle
  47. % \begin{abstract}[swedish]
  48. % \input{abstract-swe}
  49. % \end{abstract}
  50. \begin{abstract}[english]
  51. \input{abstract}
  52. \end{abstract}
  53. \include{acknowledgments}
  54. \tableofcontents
  55. \newpage
  56. \listoffigures
  57. \newpage
  58. \listoftables
  59. \include{notation}
  60. \mainmatter
  61. \include{introduction}
  62. \include{theory}
  63. \include{methods}
  64. \include{results}
  65. \include{discussion}
  66. \include{conclusion}
  67. %\bibliography{IEEEfull,myrefs}
  68. \bibliography{myrefs}
  69. \part*{Appendix}
  70. \appendix
  71. \include{detaljer}
  72. \clearemptydoublepage
  73. \backmatter
  74. \printindex
  75. \end{document}