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.

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