main.tex 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. \begin{document}
  18. \selectlanguage{english}
  19. \frontmatter
  20. \maketitle
  21. % \begin{abstract}[swedish]
  22. % \input{abstract-swe}
  23. % \end{abstract}
  24. \begin{abstract}[english]
  25. \input{abstract}
  26. \end{abstract}
  27. \include{acknowledgments}
  28. \tableofcontents
  29. \newpage
  30. \listoffigures
  31. \newpage
  32. \listoftables
  33. \include{notation}
  34. \mainmatter
  35. \include{introduction}
  36. \include{theory}
  37. \include{methods}
  38. \include{results}
  39. \include{discussion}
  40. \include{conclusion}
  41. %\bibliography{IEEEfull,myrefs}
  42. \bibliography{myrefs}
  43. \part*{Appendix}
  44. \appendix
  45. \include{detaljer}
  46. \clearemptydoublepage
  47. \backmatter
  48. \printindex
  49. \end{document}