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.

58 lines
1.1 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. \usepackage{titlesec}
  7. \newcommand{\sectionbreak}{\clearpage}
  8. % ===== LANGUAGE
  9. \usepackage[italian]{babel}
  10. % ===== FIGURES AND CAPTIONS
  11. \usepackage{graphicx}
  12. \graphicspath{ {images/} }
  13. % ===== TABLES
  14. \usepackage{booktabs}
  15. \usepackage{rotating}
  16. % ===== TEXT FONTS
  17. \usepackage{anyfontsize}
  18. \usepackage{xcolor}
  19. \usepackage{siunitx}
  20. \sisetup{retain-unity-mantissa = false,
  21. list-final-separator = {,},
  22. list-units = single}
  23. % ===== BIBLIOGRAPHY
  24. \usepackage{cite}
  25. \title{Master Thesis}
  26. \author{Lorenzo Zolfanelli}
  27. \date{April 2020}
  28. \begin{document}
  29. \pagestyle{empty}
  30. \input{titlepage}
  31. \newgeometry{width=150mm,top=25mm,bottom=25mm}
  32. \pagestyle{fancy}
  33. \setlength{\headheight}{15pt}
  34. \chapter*{Abstract}
  35. \selectfont
  36. Abstract goes here
  37. \tableofcontents
  38. \input{chapters/1-introduction}
  39. \input{chapters/2-methods}
  40. %\input{setup-fig/fig1}
  41. \bibliography{references.bib}{}
  42. \bibliographystyle{plain}
  43. \end{document}