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.

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