argui

University of Stuttgart Computer Science Thesis

Mar 18th, 2024
122
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 6.98 KB | None | 0 0
  1. % Dieses Dokument muss mit PDFLatex gesetzt werden
  2. % Vorteil: Grafiken koennen als jpg, png, ... verwendet werden
  3. %          und die Links im Dokument sind auch gleich richtig
  4. %
  5. %Ermöglicht \\ bei der Titelseite (z.B. bei supervisor)
  6. %Siehe https://github.com/latextemplates/uni-stuttgart-cs-cover/issues/4
  7. \RequirePackage{kvoptions-patch}
  8.  
  9. %English:
  10. %\let\ifdeutsch\iffalse
  11. %\let\ifenglisch\iftrue
  12.  
  13. %German:
  14. \let\ifdeutsch\iftrue
  15. \let\ifenglisch\iffalse
  16.  
  17. %
  18. \ifenglisch
  19.     \PassOptionsToClass{numbers=noenddot}{scrbook}
  20. \else
  21.     %()Aus scrguide.pdf - der Dokumentation von KOMA-Script)
  22.     %Nach DUDEN steht in Gliederungen, in denen ausschließlich arabische Ziffern für die Nummerierung
  23.     %verwendet werden, am Ende der Gliederungsnummern kein abschließender Punkt
  24.     %(siehe [DUD96, R3]). Wird hingegen innerhalb der Gliederung auch mit römischen Zahlen
  25.     %oder Groß- oder Kleinbuchstaben gearbeitet, so steht am Ende aller Gliederungsnummern ein
  26.     %abschließender Punkt (siehe [DUD96, R4])
  27.     \PassOptionsToClass{numbers=autoendperiod}{scrbook}
  28. \fi
  29.  
  30. %Warns about outdated packages and missing caption delcarations
  31. %See https://www.ctan.org/pkg/nag
  32. \RequirePackage[l2tabu, orthodox]{nag}
  33.  
  34. %Neue deutsche Trennmuster
  35. %Siehe http://www.ctan.org/pkg/dehyph-exptl und http://projekte.dante.de/Trennmuster/WebHome
  36. %Nur für pdflatex, nicht für lualatex
  37. \RequirePackage{ifluatex}
  38. \ifluatex
  39. %do not load anything
  40. \else
  41.     \ifdeutsch
  42.         \RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
  43.     \fi
  44. \fi
  45.  
  46. \documentclass[
  47.                fontsize=12pt, %Default: 11pt, bei Linux Libertine zu klein zum Lesen
  48. % BEGINN: Optionen für typearea
  49.                paper=a4,
  50.                twoside,  % fuer die Betrachtung am Schirm ungeschickt
  51.                BCOR=3mm, % Bindekorrektur
  52.                DIV=13,   % je höher der DIV-Wert, desto mehr geht auf eine Seite. Gute werde sind zwischen DIV=12 und DIV=15
  53.                headinclude=true,
  54.                footinclude=false,
  55. % ENDE: Optionen für typearea
  56. %               titlepage,
  57.                bibliography=totoc,
  58. %               idxtotoc,   %Index ins Inhaltsverzeichnis
  59. %                liststotoc, %List of X ins Inhaltsverzeichnis, mit liststotocnumbered werden die Abbildungsverzeichnisse nummeriert
  60.                headsepline,
  61.                cleardoublepage=empty,
  62.                parskip=half,
  63. %               draft    % um zu sehen, wo noch nachgebessert werden muss - wichtig, da Bindungskorrektur mit drin
  64.                final   % ACHTUNG! - in pagestyle.tex noch Seitenstil anpassen
  65.                ]{scrbook}
  66.  
  67.  
  68. \input{preambel/packages_and_options}
  69.  
  70. %Der untere Rand darf "flattern"
  71. \raggedbottom
  72.  
  73. %%%
  74. % Wie tief wird das Inhaltsverzeichnis aufgeschlüsselt
  75. % 0 --\chapter
  76. % 1 --\section % fuer kuerzeres Inhaltsverzeichnis verwenden - oder minitoc benutzen
  77. % 2 --\subsection
  78. % 3 --\subsubsection
  79. % 4 --\paragraph
  80. \setcounter{tocdepth}{1}
  81. %
  82. %%%
  83.  
  84. \makeindex
  85.  
  86. %Angaben in die PDF-Infos uebernehmen
  87. \makeatletter
  88. \hypersetup{
  89.            pdftitle={}, %Titel der Arbeit
  90.             pdfauthor={}, %Author
  91.             pdfkeywords={}, % CR-Klassifikation und ggf. weitere Stichworte
  92.             pdfsubject={}
  93. }
  94. \makeatother
  95.  
  96. \input{content/abkuerzungen}
  97.  
  98. \begin{document}
  99.  
  100. %tex4ht-Konvertierung verschönern
  101. \iftex4ht
  102. % tell tex4ht to create picures also for formulas starting with '$'
  103. % WARNING: a tex4ht run now takes forever!
  104. \Configure{$}{\PicMath}{\EndPicMath}{}
  105. %$ % <- syntax highlighting fix for emacs
  106. \Css{body {text-align:justify;}}
  107.  
  108. %conversion of .pdf to .png
  109. \Configure{graphics*}  
  110.         {pdf}  
  111.         {\Needs{"convert \csname Gin@base\endcsname.pdf  
  112.                               \csname Gin@base\endcsname.png"}%  
  113.           \Picture[pict]{\csname Gin@base\endcsname.png}%  
  114.          }  
  115. \fi
  116.  
  117. %Tipp von http://goemonx.blogspot.de/2012/01/pdflatex-ligaturen-und-copynpaste.html
  118. %siehe auch http://tex.stackexchange.com/questions/4397/make-ligatures-in-linux-libertine-copyable-and-searchable
  119. %
  120. %ONLY WORKS ON MiKTeX
  121. %On other systems, download glyphtounicode.tex from http://pdftex.sarovar.org/misc/
  122. %
  123. \input glyphtounicode.tex
  124. \pdfgentounicode=1
  125.  
  126. %\VerbatimFootnotes %verbatim text in Fußnoten erlauben. Geht normalerweise nicht.
  127.  
  128. \input{macros/commands}
  129. \pagenumbering{arabic}
  130. \Titelblatt
  131.  
  132. %Eigener Seitenstil fuer die Kurzfassung und das Inhaltsverzeichnis
  133. \deftripstyle{preamble}{}{}{}{}{}{\pagemark}
  134. %Doku zu deftripstyle: scrguide.pdf
  135. \pagestyle{preamble}
  136. \renewcommand*{\chapterpagestyle}{preamble}
  137.  
  138. %Kurzfassung / abstract
  139. %auch im Stil vom Inhaltsverzeichnis
  140. \ifdeutsch
  141. \section*{Kurzfassung}
  142. \else
  143. \section*{Abstract}
  144. \fi
  145. \ldots ... Short summary of the thesis ...
  146. \cleardoublepage
  147.  
  148.  
  149. % BEGIN: Verzeichnisse
  150.  
  151. \iftex4ht
  152. \else
  153. \microtypesetup{protrusion=false}
  154. \fi
  155.  
  156. %%%
  157. % Literaturverzeichnis ins TOC mit aufnehmen, aber nur wenn nichts anderes mehr hilft!
  158. % \addcontentsline{toc}{chapter}{Literaturverzeichnis}
  159. %
  160. % oder zB
  161. %\addcontentsline{toc}{section}{Abkürzungsverzeichnis}
  162. %
  163. %%%
  164.  
  165. %Produce table of contents
  166. %
  167. %In case you have trouble with headings reaching into the page numbers, enable the following three lines.
  168. %Hint by http://golatex.de/inhaltsverzeichnis-schreibt-ueber-rand-t3106.html
  169. %
  170. %\makeatletter
  171. %\renewcommand{\@pnumwidth}{2em}
  172. %\makeatother
  173. %
  174. \tableofcontents
  175.  
  176. % Bei einem ungünstigen Seitenumbruch im Inhaltsverzeichnis, kann dieser mit
  177. % \addtocontents{toc}{\protect\newpage}
  178. % an der passenden Stelle im Fließtext erzwungen werden.
  179.  
  180. \listoffigures
  181. \listoftables
  182.  
  183. %Wird nur bei Verwendung von der lstlisting-Umgebung mit dem "caption"-Parameter benoetigt
  184. %\lstlistoflistings
  185. %ansonsten:
  186. \ifdeutsch
  187. \listof{Listing}{Verzeichnis der Listings}
  188. \else
  189. \listof{Listing}{List of Listings}
  190. \fi
  191.  
  192. %mittels \newfloat wurde die Algorithmus-Gleitumgebung definiert.
  193. %Mit folgendem Befehl werden alle floats dieses Typs ausgegeben
  194. \ifdeutsch
  195. \listof{Algorithmus}{Verzeichnis der Algorithmen}
  196. \else
  197. \listof{Algorithmus}{List of Algorithms}
  198. \fi
  199. %\listofalgorithms %Ist nur für Algorithmen, die mittels \begin{algorithm} umschlossen werden, nötig
  200.  
  201. % Abkürzungsverzeichnis
  202. \printnoidxglossaries
  203.  
  204. \iftex4ht
  205. \else
  206. %Optischen Randausgleich und Grauwertkorrektur wieder aktivieren
  207. \microtypesetup{protrusion=true}
  208. \fi
  209.  
  210. % END: Verzeichnisse
  211.  
  212.  
  213. \renewcommand*{\chapterpagestyle}{scrplain}
  214. \pagestyle{scrheadings}
  215. \input{preambel/pagestyle}
  216. %
  217. %
  218. % ** Hier wird der Text eingebunden **
  219. %
  220. \input{content/einleitung}
  221. %\input{...weitere Kapitel...}
  222. \input{content/kapitel2}
  223. \input{content/zusammenfassung_und_ausblick}
  224. %
  225. %
  226. %\renewcommand{\appendixtocname}{Anhang}
  227. %\renewcommand{\appendixname}{Anhang}
  228. %\renewcommand{\appendixpagename}{Anhang}
  229. \appendix
  230. \input{content/latex-tipps}
  231.  
  232. \clearpage
  233.  
  234. %\printindex
  235.  
  236. \printbibliography
  237.  
  238. \ifdeutsch
  239. Alle URLs wurden zuletzt am 17.\,03.\,2008 geprüft.
  240. \else
  241. All links were last followed on March 17, 2008.
  242. \fi
  243.  
  244. \pagestyle{empty}
  245. \renewcommand*{\chapterpagestyle}{empty}
  246. \Versicherung
  247. \end{document}
Comments
  • argui
    76 days
    # Latex 3.88 KB | 0 0
    1. SSC.xx
    2. \documentclass[MSc,humanities,italian]{sscunictthesis}
    3. % default option: science; other option: humanities; toggles between bibliography styles (numerical for science, alphabetical for humanities)
    4. % language option: italian or english
    5. % diploma type: BSc, MSc, PhD
    6. \usepackage{lipsum}
    7. \usepackage[Lenny]{fncychap}
    8. \usepackage[absolute,overlay]{textpos} % only used by lastpage.tex
    9.  
    10. \begin{document}
    11.  
    12. \author{Albert Einstein}
    13. \title{The equation of everything}
    14. \aayear{2020/2021}
    15.  
    16. \begin{supervisors} % mandatory
    17.    \supervisor{Chiar.mo}{Prof.}{A. Nyone}
    18.   \supervisor{}{Dr.}{S. One Else}
    19. \end{supervisors}
    20.  
    21. %\begin{cosupervisors} % optional
    22. %   \cosupervisor{Chiar.ma}{Prof.ssa}{E. Noether}
    23. %   \cosupervisor{}{Dr.}{S. Kovalevskaya}
    24. %\end{cosupervisors}
    25.  
    26. \begin{opponents} %mandatory
    27. %   \opponent{Chiar.mo}{Prof.}{M. Planck}
    28.    \opponent{}{Dr.}{P. A. M. Dirac}
    29. \end{opponents}
    30.  
    31.  
    32. \maketitlepage
    33.  
    34. \hypersetup{%
    35.    pdfsubject={Scuola Superiore di Catania,MSc thesis},
    36.   pdfkeywords={test1,test2,test3}
    37. }
    38.  
    39. \chapter*{\iflanguage{italian}{Riassunto}{Abstract}}
    40. \addcontentsline{toc}{chapter}{\iflanguage{italian}{Riassunto}{Abstract}}
    41.  
    42. \iflanguage{italian}{Il regolamento dell'esame di diploma prevede un riassunto di una-due pagine.}{As per diploma rules, please include a 1-2 pages abstract.}
    43.  
    44. \lipsum[20]
    45.  
    46. \tableofcontents
    47.  
    48. \chapter*{\iflanguage{italian}{Introduzione}{Introduction}}
    49. \addcontentsline{toc}{chapter}{\iflanguage{italian}{Introduzione}{Introduction}}
    50.  
    51. \lipsum[20]
    52.  
    53. \chapter{\iflanguage{italian}{Stato dell'arte}{State of the art}}
    54.  
    55. \section{\iflanguage{italian}{Titolo della sezione}{Section title}}
    56.  
    57. \subsection{\iflanguage{italian}{Titolo del paragrafo}{Subsection title}}
    58.  
    59. \lipsum[20] \cite{Resnick:03}
    60. \lipsum[5] \cite{Chen2019}
    61. \lipsum[5] \cite{Pitruzzello2015}
    62. \lipsum[5] \cite{doi:10.1142/S0219498820501273}
    63. \lipsum[5] \cite{PhysRevLett.125.248301}
    64. \lipsum[5] \cite{Ninna}
    65. \lipsum[5] \cite{Vicio}
    66. \lipsum[5] \cite{Trapani}
    67.  
    68. \chapter{\iflanguage{italian}{Metodi sperimentali}{Experimental methods}}
    69.  
    70. \section{\iflanguage{italian}{Titolo della sezione}{Section title}}
    71.  
    72. \subsection{\iflanguage{italian}{Titolo del paragrafo}{Subsection title}}
    73.  
    74. \lipsum[5] \cite{Cordaro2017}
    75. \lipsum[5] \cite{Cordaro2019}
    76. \lipsum[5] \cite{8217871}
    77. \lipsum[5] \cite{Tisano1}
    78. \lipsum[5] \cite{Tisano2}
    79. \lipsum[5] \cite{Baglieri}
    80. \lipsum[5] \cite{PERROTTA2019168}
    81. \lipsum[5] \cite{DeDo}
    82.  
    83. \chapter{\iflanguage{italian}{Interpretazione teorica}{Theoretical analysis}}
    84.  
    85. \section{\iflanguage{italian}{Titolo della sezione}{Section title}}
    86.  
    87. \subsection{\iflanguage{italian}{Titolo del paragrafo}{Subsection title}}
    88.  
    89. \lipsum[5] \cite{Ninna-book}
    90. \lipsum[5] \cite{Mazzaglia1}
    91. \lipsum[5] \cite{Mazzaglia2}
    92. \lipsum[5] \cite{bentivegna_impact_2017}
    93. \lipsum[5] \cite{branchina_protecting_2018}
    94. \lipsum[5] \cite{branchina_electroweak_2018}
    95. \lipsum[5] \cite{branchina_direct_2019}
    96. %\lipsum[5] \cite{}
    97.  
    98.  
    99. \lipsum[40]
    100. Inline equation $\nabla\cdot{\bf B} = 0$.
    101. \lipsum[20]
    102.  
    103. \begin{figure}[t]
    104. \centering
    105. \includegraphics[width=0.8\columnwidth]{esempio.pdf}
    106. \caption{Caption}
    107. \label{fig:esempio}
    108. \end{figure}
    109.  
    110. Cf.\ Fig.~\ref{fig:esempio}.
    111. \lipsum[30]
    112. \begin{equation}
    113. f(z) = \oint \frac{f(\zeta)}{\zeta - z} d\zeta .
    114. \end{equation}
    115. \lipsum[10]
    116.  
    117. \chapter*{\iflanguage{italian}{Conclusioni}{Conclusions}}
    118. \addcontentsline{toc}{chapter}{\iflanguage{italian}{Conclusioni}{Conclusions}}
    119.  
    120. \lipsum[20]
    121.  
    122. \addcontentsline{toc}{chapter}{\iflanguage{italian}{Bibliografia}{Bibliography}}
    123. % class option: science/humanities toggles ssc-num/ssc-alpha for the bibliographystyle
    124. \bibliography{biblio}
    125.  
    126. \chapter*{\iflanguage{italian}{Ringraziamenti}{Acknowledgements}}
    127. \addcontentsline{toc}{chapter}{\iflanguage{italian}{Ringraziamenti}{Acknowledgements}}
    128.  
    129. \lipsum[20]
    130.  
    131. \input lastpage % comment out this line, if you don't want the last "cover" page
    132.  
    133. \end{document}
  • argui
    76 days
    # Latex 3.17 KB | 0 0
    1. PUT CREEF Dissertation Template
    2. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    3. %% Bachelor's & Master's Thesis Template                                 %%
    4. %% Copyleft by Dawid Weiss & Marta Szachniuk                             %%
    5. %% Faculty of Automatic Control, Robotics, and Electrical Engineering    %%
    6. %% Poznan University of Technology, 2023                                 %%
    7. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    8.  
    9.  
    10. % Szkielet dla pracy inżynierskiej/magisterskiej pisanej w języku polskim.
    11. \documentclass[polish,bachelor,a4paper,oneside]{ppcreefthesis}
    12.  
    13. % Template for an engineering/master's thesis written in English.
    14. % \documentclass[english,bachelor,a4paper,oneside]{ppcreefthesis}
    15.  
    16.  
    17. \usepackage[utf8]{inputenc}
    18. \usepackage[OT4]{fontenc}
    19.  
    20. %--------------------------------------
    21. % Strona tytułowa \ Front page
    22. %--------------------------------------
    23.  
    24. % Autorzy pracy, jeśli jest ich więcej niż jeden
    25. % wstaw między nimi separator \and
    26.  
    27. % Authors of the thesis, if there is more than one
    28. % insert a separator between them \and
    29.  
    30. \author{%
    31.    Imię Nazwisko \album{12345} \and
    32.   Imię Nazwisko \album{54321} \and
    33.   Imię Nazwisko \album{13579} }
    34. \authortitle{}                                % Do not change.
    35.  
    36. \title{Temat pracy dyplomowej}
    37.  
    38. % Promotor pracy
    39. % Your supervisor comes here.
    40.  
    41. \ppsupervisor{prof.~dr hab.~inż.~Imię Nazwisko}
    42. \ppinstitute{Instytut Robotyki i Inteligencji Maszynowej \\
    43.             Zakład Sterowania i Elektroniki Przemysłowej}
    44.  
    45. % Rok złożenia pracy
    46. % Year of final submission (not graduation!)
    47. \ppyear{2023}                                
    48.  
    49.  
    50. \begin{document}
    51.  
    52. % Pierwsza strona zaczyna się tutaj
    53. % Front matter starts here
    54. \frontmatter\pagestyle{empty}%
    55. \maketitle\cleardoublepage%
    56.  
    57. %--------------------------------------
    58. % Miejsce na kartę pracy dyplomowej - opcjonalnie, nie jest wymagane
    59. %--------------------------------------
    60. \thispagestyle{empty}\vspace*{\fill}%
    61. \begin{center}Tutaj będzie skan karty pracy dyplomowej. \end{center}%
    62. \vfill\cleardoublepage%
    63. %--------------------------------------
    64.  
    65.  
    66. %--------------------------------------
    67. % Spis treści
    68. %--------------------------------------
    69.  
    70. \pagenumbering{Roman}
    71. \pagestyle{ppfcmthesis}
    72. \tableofcontents*
    73. \cleardoublepage % Zaczynamy od nieparzystej strony
    74.  
    75. %--------------------------------------
    76. % Rozdziały
    77. %--------------------------------------
    78.  
    79. %Najwygodniej jeśli każdy rozdział znajduje się w oddzielnym pliku
    80. \mainmatter%
    81. \input{chapters/01-wstep.tex}
    82. \input{chapters/02-teoria.tex}
    83. \input{chapters/03-praca-wlasna.tex}
    84. \input{chapters/04-zakonczenie.tex}
    85.  
    86. %--------------------------------------
    87. % Literatura
    88. %--------------------------------------
    89.  
    90. \bibliographystyle{plain}{\raggedright\sloppy\small\bibliography{bibliografia}}
    91.  
    92. %--------------------------------------
    93. % Dodatki
    94. %--------------------------------------
    95.  
    96. \cleardoublepage\appendix%
    97. \newpage
    98. \input{chapters/zalacznik.tex}
    99.  
    100. %--------------------------------------
    101. % Informacja o prawach autorskich
    102. %--------------------------------------
    103.  
    104. \ppcolophon
    105.  
    106. \end{document}
  • argui
    76 days
    # Latex 2.91 KB | 0 0
    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}
Add Comment
Please, Sign In to add comment