main.tex 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. ]{rtthesis}
  13. \usepackage{mythesis}
  14. \usepackage{tabularx}
  15. \usepackage{float}
  16. \begin{document}
  17. \selectlanguage{english}
  18. \frontmatter
  19. \maketitle
  20. % \begin{abstract}[swedish]
  21. % \input{abstract-swe}
  22. % \end{abstract}
  23. \begin{abstract}[english]
  24. \input{abstract}
  25. \end{abstract}
  26. \include{acknowledgments}
  27. \tableofcontents
  28. \include{notation}
  29. \mainmatter
  30. \include{introduction}
  31. \include{theory}
  32. \include{methods}
  33. \include{results}
  34. \include{conclution}
  35. \part*{Appendix}
  36. \appendix
  37. \include{detaljer}
  38. \clearemptydoublepage
  39. \backmatter
  40. \bibliography{IEEEfull,myrefs}
  41. \printindex
  42. \end{document}