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.

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