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.

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