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.

75 lines
1.3 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. % ===== MATHS
  19. \usepackage{amsmath}
  20. \let\vec\mathbf
  21. \let\Re\relax
  22. \DeclareMathOperator{\Re}{Re}
  23. % ===== TABLES
  24. \usepackage{booktabs}
  25. \usepackage{rotating}
  26. % ===== TEXT FONTS
  27. \usepackage{anyfontsize}
  28. \usepackage{xcolor}
  29. \usepackage{siunitx}
  30. \sisetup{retain-unity-mantissa = false,
  31. list-final-separator = {,},
  32. list-units = single}
  33. % ===== BIBLIOGRAPHY
  34. \usepackage{cite}
  35. \title{Master Thesis}
  36. \author{Lorenzo Zolfanelli}
  37. \date{April 2020}
  38. \begin{document}
  39. \pagestyle{empty}
  40. \input{titlepage}
  41. \newgeometry{width=150mm,top=25mm,bottom=25mm}
  42. \pagestyle{fancy}
  43. \setlength{\headheight}{15pt}
  44. \chapter*{Abstract}
  45. \selectfont
  46. Abstract goes here
  47. \tableofcontents
  48. \input{chapters/1-introduction}
  49. \input{chapters/2-methods}
  50. %\input{setup-fig/fig1}
  51. \appendix
  52. \input{chapters/A1-AJ_network}
  53. \bibliography{references.bib}{}
  54. \bibliographystyle{plain}
  55. \end{document}