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.

96 lines
1.8 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. % ===== PROTOCOLS
  42. \usepackage{algorithm}
  43. \usepackage{algorithmic}
  44. \makeatletter
  45. \renewcommand{\ALG@name}{Protocollo}
  46. \makeatother
  47. % ===== LINKS
  48. \usepackage{hyperref}
  49. \title{Master Thesis}
  50. \author{Lorenzo Zolfanelli}
  51. \date{April 2020}
  52. \begin{document}
  53. \pagestyle{empty}
  54. \input{titlepage}
  55. \newgeometry{width=150mm,top=25mm,bottom=25mm}
  56. \pagestyle{fancy}
  57. \setlength{\headheight}{15pt}
  58. \chapter*{Abstract}
  59. \selectfont
  60. Abstract goes here
  61. \tableofcontents
  62. \input{chapters/1-introduction}
  63. \input{chapters/2-setup}
  64. \input{chapters/3-methods}
  65. \input{chapters/4-results}
  66. %\input{setup-fig/fig1}
  67. \appendix
  68. \input{chapters/A1-AJ_network}
  69. \input{chapters/A2-electronics}
  70. \input{chapters/A3-protocols}
  71. \bibliography{references.bib}{}
  72. \bibliographystyle{plainurl}
  73. \end{document}