Advertisement
argui
Mar 18th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Template Tesi UniPr
  2. \documentclass{theme/uniprthesis}
  3.  
  4. %%%%%%%%%%%Some Extra Packages%%%%%%%%%%%
  5. \usepackage[italian]{babel}     % To have Italina names in Sections, Figures, Chapters etc.
  6. \usepackage{todonotes}          % To ease the revision
  7.  
  8.  
  9. \usepackage{blindtext}          % Dummy Text - remove
  10. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  11.  
  12.  
  13. %%%%% THESIS / TITLE PAGE INFORMATION
  14. % Everybody needs to complete the following:
  15.  
  16. \title{Titolo in Italiano}
  17. \author{Nome Cognome}
  18. \advisor{Prof. Nome Cognome}
  19. \college{Dipartimento di Scienze Matematiche, Fisiche e Informatiche}
  20. \degree{Corso di Laurea [Triennale in Informatica | Magistrale in Scienze Informatiche]}
  21. \degreeyears{20XX--20XX}
  22.  
  23.  
  24. % Not mandatory fields
  25. \newcommand{\subTitle}{Titolo in Inglese} %Subtitle, usually the english version of the title
  26.  
  27. %\newcommand{\advisorSecond}{Prof. Nome2 Cognome2} % For multiple (up to 4) advisors -- if this is not present then also the remaining ones are automatically omitted
  28. %\newcommand{\advisorThird}{Dott. Nome3 Cognome3} % For multiple (up to 4) advisors -- if this is not present then also the remaining ones are automatically omitted
  29. %\newcommand{\advisorFourth}{Dott. Nome4 Cognome4} % For multiple (up to 4) advisors
  30.  
  31. \newcommand{\coadvisor}{Prof. co-Nome co-Cognome} %For multiple (up to 4) coadvisors -- if this is not present then also the remaining ones are automatically omitted
  32. \newcommand{\coadvisorSecond}{Prof. co-Nome2 co-Cognome2} % For multiple (up to 4) coadvisors -- if this is not present then also the remaining ones are automatically omitted
  33. %\newcommand{\coadvisorThird}{Dott. co-Nome3 co-Cognome3} % For multiple (up to 4) coadvisors -- if this is not present then also the remaining ones are automatically omitted
  34. %\newcommand{\coadvisorFourth}{Dott. co-Nome4 co-Cognome4} % For multiple (up to 4) coadvisors
  35.  
  36.  
  37. \begin{document}
  38.  
  39. \maketitle
  40.  
  41. %%%% La dedica
  42. \newpage
  43. \thispagestyle{empty}
  44. \null\vspace{\stretch{1}}
  45. \begin{flushright}
  46.     \textit{Dedica}
  47. \end{flushright}
  48. \vspace{\stretch{3}}\null
  49. \newpage
  50.  
  51. %%%% Gli indici
  52. \pagestyle{plain}
  53. \pagenumbering{roman}
  54. \tableofcontents
  55. %
  56. \listoffigures    %Commentare se non vi sono Immagini
  57. \listofalgorithms %Commentare se non vi sono Algoritmi
  58. \listoftables     %Commentare se non vi sono Tabelle
  59. %
  60. %
  61. %
  62. %%%% La prefazione
  63. \include{Capitoli/Introduzione}
  64. %
  65. %%%% I Capitoli di Contenuto   
  66. \pagestyle{fancy}
  67. \include{Capitoli/Formattazione}
  68. \include{Capitoli/Background}
  69. \include{Capitoli/Obiettivi}
  70. \include{Capitoli/Progettazione-Implementazione}
  71. \include{Capitoli/Risultati}
  72. %
  73. %
  74. %%%% Le Conclusioni
  75. \pagestyle{plain}
  76. \include{Capitoli/Conclusione}
  77. %
  78. %%%% La bibliografia
  79. \bibliographystyle{apalike} %{plain} -- Scegliere lo stile preferito
  80. \cleardoublepage
  81. \addcontentsline{toc}{chapter}{\bibname}
  82. \bibliography{./Bibliografia}
  83. %
  84. \include{Capitoli/Ringraziamenti}
  85. %
  86. % Le appendici
  87. \appendix
  88. \include{Capitoli/Appendici/Appendice1}
  89. %
  90. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement