Tesi magistrale
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.2 KiB

  1. \documentclass[12pt,twoside,openright]{report}
  2. % ===== PAGE LAYOUT
  3. \usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
  4. \usepackage[utf8]{inputenc}
  5. \usepackage{fancyhdr}
  6. \pagestyle{fancy}
  7. \renewcommand{\headrulewidth}{2pt}
  8. \fancyhf[lh,rh,ch]{}
  9. \fancyhf[leh]{\leftmark}
  10. \fancyhf[roh]{\rightmark}
  11. \usepackage{titlesec}
  12. \newcommand{\sectionbreak}{\clearpage}
  13. % ===== LANGUAGE
  14. \usepackage[italian]{babel}
  15. % ===== FIGURES AND CAPTIONS
  16. \usepackage{graphicx}
  17. \graphicspath{ {images/} }
  18. % ===== TABLES
  19. \usepackage{booktabs}
  20. \usepackage{rotating}
  21. % ===== TEXT FONTS
  22. \usepackage{anyfontsize}
  23. \usepackage{xcolor}
  24. \usepackage{siunitx}
  25. \sisetup{retain-unity-mantissa = false,
  26. list-final-separator = {,},
  27. list-units = single}
  28. % ===== BIBLIOGRAPHY
  29. \usepackage{cite}
  30. \title{Master Thesis}
  31. \author{Lorenzo Zolfanelli}
  32. \date{April 2020}
  33. \begin{document}
  34. \pagestyle{empty}
  35. \input{titlepage}
  36. \newgeometry{width=150mm,top=25mm,bottom=25mm}
  37. \pagestyle{fancy}
  38. \setlength{\headheight}{15pt}
  39. \chapter*{Abstract}
  40. \selectfont
  41. Abstract goes here
  42. \tableofcontents
  43. \input{chapters/1-introduction}
  44. \input{chapters/2-methods}
  45. %\input{setup-fig/fig1}
  46. \appendix
  47. \input{chapters/A1-AJ_network}
  48. \bibliography{references.bib}{}
  49. \bibliographystyle{plain}
  50. \end{document}