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.

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