Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- % Dieses Dokument muss mit PDFLatex gesetzt werden
- % Vorteil: Grafiken koennen als jpg, png, ... verwendet werden
- % und die Links im Dokument sind auch gleich richtig
- %
- %Ermöglicht \\ bei der Titelseite (z.B. bei supervisor)
- %Siehe https://github.com/latextemplates/uni-stuttgart-cs-cover/issues/4
- \RequirePackage{kvoptions-patch}
- %English:
- %\let\ifdeutsch\iffalse
- %\let\ifenglisch\iftrue
- %German:
- \let\ifdeutsch\iftrue
- \let\ifenglisch\iffalse
- %
- \ifenglisch
- \PassOptionsToClass{numbers=noenddot}{scrbook}
- \else
- %()Aus scrguide.pdf - der Dokumentation von KOMA-Script)
- %Nach DUDEN steht in Gliederungen, in denen ausschließlich arabische Ziffern für die Nummerierung
- %verwendet werden, am Ende der Gliederungsnummern kein abschließender Punkt
- %(siehe [DUD96, R3]). Wird hingegen innerhalb der Gliederung auch mit römischen Zahlen
- %oder Groß- oder Kleinbuchstaben gearbeitet, so steht am Ende aller Gliederungsnummern ein
- %abschließender Punkt (siehe [DUD96, R4])
- \PassOptionsToClass{numbers=autoendperiod}{scrbook}
- \fi
- %Warns about outdated packages and missing caption delcarations
- %See https://www.ctan.org/pkg/nag
- \RequirePackage[l2tabu, orthodox]{nag}
- %Neue deutsche Trennmuster
- %Siehe http://www.ctan.org/pkg/dehyph-exptl und http://projekte.dante.de/Trennmuster/WebHome
- %Nur für pdflatex, nicht für lualatex
- \RequirePackage{ifluatex}
- \ifluatex
- %do not load anything
- \else
- \ifdeutsch
- \RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
- \fi
- \fi
- \documentclass[
- fontsize=12pt, %Default: 11pt, bei Linux Libertine zu klein zum Lesen
- % BEGINN: Optionen für typearea
- paper=a4,
- twoside, % fuer die Betrachtung am Schirm ungeschickt
- BCOR=3mm, % Bindekorrektur
- DIV=13, % je höher der DIV-Wert, desto mehr geht auf eine Seite. Gute werde sind zwischen DIV=12 und DIV=15
- headinclude=true,
- footinclude=false,
- % ENDE: Optionen für typearea
- % titlepage,
- bibliography=totoc,
- % idxtotoc, %Index ins Inhaltsverzeichnis
- % liststotoc, %List of X ins Inhaltsverzeichnis, mit liststotocnumbered werden die Abbildungsverzeichnisse nummeriert
- headsepline,
- cleardoublepage=empty,
- parskip=half,
- % draft % um zu sehen, wo noch nachgebessert werden muss - wichtig, da Bindungskorrektur mit drin
- final % ACHTUNG! - in pagestyle.tex noch Seitenstil anpassen
- ]{scrbook}
- \input{preambel/packages_and_options}
- %Der untere Rand darf "flattern"
- \raggedbottom
- %%%
- % Wie tief wird das Inhaltsverzeichnis aufgeschlüsselt
- % 0 --\chapter
- % 1 --\section % fuer kuerzeres Inhaltsverzeichnis verwenden - oder minitoc benutzen
- % 2 --\subsection
- % 3 --\subsubsection
- % 4 --\paragraph
- \setcounter{tocdepth}{1}
- %
- %%%
- \makeindex
- %Angaben in die PDF-Infos uebernehmen
- \makeatletter
- \hypersetup{
- pdftitle={}, %Titel der Arbeit
- pdfauthor={}, %Author
- pdfkeywords={}, % CR-Klassifikation und ggf. weitere Stichworte
- pdfsubject={}
- }
- \makeatother
- \input{content/abkuerzungen}
- \begin{document}
- %tex4ht-Konvertierung verschönern
- \iftex4ht
- % tell tex4ht to create picures also for formulas starting with '$'
- % WARNING: a tex4ht run now takes forever!
- \Configure{$}{\PicMath}{\EndPicMath}{}
- %$ % <- syntax highlighting fix for emacs
- \Css{body {text-align:justify;}}
- %conversion of .pdf to .png
- \Configure{graphics*}
- {pdf}
- {\Needs{"convert \csname Gin@base\endcsname.pdf
- \csname Gin@base\endcsname.png"}%
- \Picture[pict]{\csname Gin@base\endcsname.png}%
- }
- \fi
- %Tipp von http://goemonx.blogspot.de/2012/01/pdflatex-ligaturen-und-copynpaste.html
- %siehe auch http://tex.stackexchange.com/questions/4397/make-ligatures-in-linux-libertine-copyable-and-searchable
- %
- %ONLY WORKS ON MiKTeX
- %On other systems, download glyphtounicode.tex from http://pdftex.sarovar.org/misc/
- %
- \input glyphtounicode.tex
- \pdfgentounicode=1
- %\VerbatimFootnotes %verbatim text in Fußnoten erlauben. Geht normalerweise nicht.
- \input{macros/commands}
- \pagenumbering{arabic}
- \Titelblatt
- %Eigener Seitenstil fuer die Kurzfassung und das Inhaltsverzeichnis
- \deftripstyle{preamble}{}{}{}{}{}{\pagemark}
- %Doku zu deftripstyle: scrguide.pdf
- \pagestyle{preamble}
- \renewcommand*{\chapterpagestyle}{preamble}
- %Kurzfassung / abstract
- %auch im Stil vom Inhaltsverzeichnis
- \ifdeutsch
- \section*{Kurzfassung}
- \else
- \section*{Abstract}
- \fi
- \ldots ... Short summary of the thesis ...
- \cleardoublepage
- % BEGIN: Verzeichnisse
- \iftex4ht
- \else
- \microtypesetup{protrusion=false}
- \fi
- %%%
- % Literaturverzeichnis ins TOC mit aufnehmen, aber nur wenn nichts anderes mehr hilft!
- % \addcontentsline{toc}{chapter}{Literaturverzeichnis}
- %
- % oder zB
- %\addcontentsline{toc}{section}{Abkürzungsverzeichnis}
- %
- %%%
- %Produce table of contents
- %
- %In case you have trouble with headings reaching into the page numbers, enable the following three lines.
- %Hint by http://golatex.de/inhaltsverzeichnis-schreibt-ueber-rand-t3106.html
- %
- %\makeatletter
- %\renewcommand{\@pnumwidth}{2em}
- %\makeatother
- %
- \tableofcontents
- % Bei einem ungünstigen Seitenumbruch im Inhaltsverzeichnis, kann dieser mit
- % \addtocontents{toc}{\protect\newpage}
- % an der passenden Stelle im Fließtext erzwungen werden.
- \listoffigures
- \listoftables
- %Wird nur bei Verwendung von der lstlisting-Umgebung mit dem "caption"-Parameter benoetigt
- %\lstlistoflistings
- %ansonsten:
- \ifdeutsch
- \listof{Listing}{Verzeichnis der Listings}
- \else
- \listof{Listing}{List of Listings}
- \fi
- %mittels \newfloat wurde die Algorithmus-Gleitumgebung definiert.
- %Mit folgendem Befehl werden alle floats dieses Typs ausgegeben
- \ifdeutsch
- \listof{Algorithmus}{Verzeichnis der Algorithmen}
- \else
- \listof{Algorithmus}{List of Algorithms}
- \fi
- %\listofalgorithms %Ist nur für Algorithmen, die mittels \begin{algorithm} umschlossen werden, nötig
- % Abkürzungsverzeichnis
- \printnoidxglossaries
- \iftex4ht
- \else
- %Optischen Randausgleich und Grauwertkorrektur wieder aktivieren
- \microtypesetup{protrusion=true}
- \fi
- % END: Verzeichnisse
- \renewcommand*{\chapterpagestyle}{scrplain}
- \pagestyle{scrheadings}
- \input{preambel/pagestyle}
- %
- %
- % ** Hier wird der Text eingebunden **
- %
- \input{content/einleitung}
- %\input{...weitere Kapitel...}
- \input{content/kapitel2}
- \input{content/zusammenfassung_und_ausblick}
- %
- %
- %\renewcommand{\appendixtocname}{Anhang}
- %\renewcommand{\appendixname}{Anhang}
- %\renewcommand{\appendixpagename}{Anhang}
- \appendix
- \input{content/latex-tipps}
- \clearpage
- %\printindex
- \printbibliography
- \ifdeutsch
- Alle URLs wurden zuletzt am 17.\,03.\,2008 geprüft.
- \else
- All links were last followed on March 17, 2008.
- \fi
- \pagestyle{empty}
- \renewcommand*{\chapterpagestyle}{empty}
- \Versicherung
- \end{document}
Comments
-
- SSC.xx
- \documentclass[MSc,humanities,italian]{sscunictthesis}
- % default option: science; other option: humanities; toggles between bibliography styles (numerical for science, alphabetical for humanities)
- % language option: italian or english
- % diploma type: BSc, MSc, PhD
- \usepackage{lipsum}
- \usepackage[Lenny]{fncychap}
- \usepackage[absolute,overlay]{textpos} % only used by lastpage.tex
- \begin{document}
- \author{Albert Einstein}
- \title{The equation of everything}
- \aayear{2020/2021}
- \begin{supervisors} % mandatory
- \supervisor{Chiar.mo}{Prof.}{A. Nyone}
- \supervisor{}{Dr.}{S. One Else}
- \end{supervisors}
- %\begin{cosupervisors} % optional
- % \cosupervisor{Chiar.ma}{Prof.ssa}{E. Noether}
- % \cosupervisor{}{Dr.}{S. Kovalevskaya}
- %\end{cosupervisors}
- \begin{opponents} %mandatory
- % \opponent{Chiar.mo}{Prof.}{M. Planck}
- \opponent{}{Dr.}{P. A. M. Dirac}
- \end{opponents}
- \maketitlepage
- \hypersetup{%
- pdfsubject={Scuola Superiore di Catania,MSc thesis},
- pdfkeywords={test1,test2,test3}
- }
- \chapter*{\iflanguage{italian}{Riassunto}{Abstract}}
- \addcontentsline{toc}{chapter}{\iflanguage{italian}{Riassunto}{Abstract}}
- \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.}
- \lipsum[20]
- \tableofcontents
- \chapter*{\iflanguage{italian}{Introduzione}{Introduction}}
- \addcontentsline{toc}{chapter}{\iflanguage{italian}{Introduzione}{Introduction}}
- \lipsum[20]
- \chapter{\iflanguage{italian}{Stato dell'arte}{State of the art}}
- \section{\iflanguage{italian}{Titolo della sezione}{Section title}}
- \subsection{\iflanguage{italian}{Titolo del paragrafo}{Subsection title}}
- \lipsum[20] \cite{Resnick:03}
- \lipsum[5] \cite{Chen2019}
- \lipsum[5] \cite{Pitruzzello2015}
- \lipsum[5] \cite{doi:10.1142/S0219498820501273}
- \lipsum[5] \cite{PhysRevLett.125.248301}
- \lipsum[5] \cite{Ninna}
- \lipsum[5] \cite{Vicio}
- \lipsum[5] \cite{Trapani}
- \chapter{\iflanguage{italian}{Metodi sperimentali}{Experimental methods}}
- \section{\iflanguage{italian}{Titolo della sezione}{Section title}}
- \subsection{\iflanguage{italian}{Titolo del paragrafo}{Subsection title}}
- \lipsum[5] \cite{Cordaro2017}
- \lipsum[5] \cite{Cordaro2019}
- \lipsum[5] \cite{8217871}
- \lipsum[5] \cite{Tisano1}
- \lipsum[5] \cite{Tisano2}
- \lipsum[5] \cite{Baglieri}
- \lipsum[5] \cite{PERROTTA2019168}
- \lipsum[5] \cite{DeDo}
- \chapter{\iflanguage{italian}{Interpretazione teorica}{Theoretical analysis}}
- \section{\iflanguage{italian}{Titolo della sezione}{Section title}}
- \subsection{\iflanguage{italian}{Titolo del paragrafo}{Subsection title}}
- \lipsum[5] \cite{Ninna-book}
- \lipsum[5] \cite{Mazzaglia1}
- \lipsum[5] \cite{Mazzaglia2}
- \lipsum[5] \cite{bentivegna_impact_2017}
- \lipsum[5] \cite{branchina_protecting_2018}
- \lipsum[5] \cite{branchina_electroweak_2018}
- \lipsum[5] \cite{branchina_direct_2019}
- %\lipsum[5] \cite{}
- \lipsum[40]
- Inline equation $\nabla\cdot{\bf B} = 0$.
- \lipsum[20]
- \begin{figure}[t]
- \centering
- \includegraphics[width=0.8\columnwidth]{esempio.pdf}
- \caption{Caption}
- \label{fig:esempio}
- \end{figure}
- Cf.\ Fig.~\ref{fig:esempio}.
- \lipsum[30]
- \begin{equation}
- f(z) = \oint \frac{f(\zeta)}{\zeta - z} d\zeta .
- \end{equation}
- \lipsum[10]
- \chapter*{\iflanguage{italian}{Conclusioni}{Conclusions}}
- \addcontentsline{toc}{chapter}{\iflanguage{italian}{Conclusioni}{Conclusions}}
- \lipsum[20]
- \addcontentsline{toc}{chapter}{\iflanguage{italian}{Bibliografia}{Bibliography}}
- % class option: science/humanities toggles ssc-num/ssc-alpha for the bibliographystyle
- \bibliography{biblio}
- \chapter*{\iflanguage{italian}{Ringraziamenti}{Acknowledgements}}
- \addcontentsline{toc}{chapter}{\iflanguage{italian}{Ringraziamenti}{Acknowledgements}}
- \lipsum[20]
- \input lastpage % comment out this line, if you don't want the last "cover" page
- \end{document}
-
- PUT CREEF Dissertation Template
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %% Bachelor's & Master's Thesis Template %%
- %% Copyleft by Dawid Weiss & Marta Szachniuk %%
- %% Faculty of Automatic Control, Robotics, and Electrical Engineering %%
- %% Poznan University of Technology, 2023 %%
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- % Szkielet dla pracy inżynierskiej/magisterskiej pisanej w języku polskim.
- \documentclass[polish,bachelor,a4paper,oneside]{ppcreefthesis}
- % Template for an engineering/master's thesis written in English.
- % \documentclass[english,bachelor,a4paper,oneside]{ppcreefthesis}
- \usepackage[utf8]{inputenc}
- \usepackage[OT4]{fontenc}
- %--------------------------------------
- % Strona tytułowa \ Front page
- %--------------------------------------
- % Autorzy pracy, jeśli jest ich więcej niż jeden
- % wstaw między nimi separator \and
- % Authors of the thesis, if there is more than one
- % insert a separator between them \and
- \author{%
- Imię Nazwisko \album{12345} \and
- Imię Nazwisko \album{54321} \and
- Imię Nazwisko \album{13579} }
- \authortitle{} % Do not change.
- \title{Temat pracy dyplomowej}
- % Promotor pracy
- % Your supervisor comes here.
- \ppsupervisor{prof.~dr hab.~inż.~Imię Nazwisko}
- \ppinstitute{Instytut Robotyki i Inteligencji Maszynowej \\
- Zakład Sterowania i Elektroniki Przemysłowej}
- % Rok złożenia pracy
- % Year of final submission (not graduation!)
- \ppyear{2023}
- \begin{document}
- % Pierwsza strona zaczyna się tutaj
- % Front matter starts here
- \frontmatter\pagestyle{empty}%
- \maketitle\cleardoublepage%
- %--------------------------------------
- % Miejsce na kartę pracy dyplomowej - opcjonalnie, nie jest wymagane
- %--------------------------------------
- \thispagestyle{empty}\vspace*{\fill}%
- \begin{center}Tutaj będzie skan karty pracy dyplomowej. \end{center}%
- \vfill\cleardoublepage%
- %--------------------------------------
- %--------------------------------------
- % Spis treści
- %--------------------------------------
- \pagenumbering{Roman}
- \pagestyle{ppfcmthesis}
- \tableofcontents*
- \cleardoublepage % Zaczynamy od nieparzystej strony
- %--------------------------------------
- % Rozdziały
- %--------------------------------------
- %Najwygodniej jeśli każdy rozdział znajduje się w oddzielnym pliku
- \mainmatter%
- \input{chapters/01-wstep.tex}
- \input{chapters/02-teoria.tex}
- \input{chapters/03-praca-wlasna.tex}
- \input{chapters/04-zakonczenie.tex}
- %--------------------------------------
- % Literatura
- %--------------------------------------
- \bibliographystyle{plain}{\raggedright\sloppy\small\bibliography{bibliografia}}
- %--------------------------------------
- % Dodatki
- %--------------------------------------
- \cleardoublepage\appendix%
- \newpage
- \input{chapters/zalacznik.tex}
- %--------------------------------------
- % Informacja o prawach autorskich
- %--------------------------------------
- \ppcolophon
- \end{document}
-
- Template Tesi UniPr
- \documentclass{theme/uniprthesis}
- %%%%%%%%%%%Some Extra Packages%%%%%%%%%%%
- \usepackage[italian]{babel} % To have Italina names in Sections, Figures, Chapters etc.
- \usepackage{todonotes} % To ease the revision
- \usepackage{blindtext} % Dummy Text - remove
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- %%%%% THESIS / TITLE PAGE INFORMATION
- % Everybody needs to complete the following:
- \title{Titolo in Italiano}
- \author{Nome Cognome}
- \advisor{Prof. Nome Cognome}
- \college{Dipartimento di Scienze Matematiche, Fisiche e Informatiche}
- \degree{Corso di Laurea [Triennale in Informatica | Magistrale in Scienze Informatiche]}
- \degreeyears{20XX--20XX}
- % Not mandatory fields
- \newcommand{\subTitle}{Titolo in Inglese} %Subtitle, usually the english version of the title
- %\newcommand{\advisorSecond}{Prof. Nome2 Cognome2} % For multiple (up to 4) advisors -- if this is not present then also the remaining ones are automatically omitted
- %\newcommand{\advisorThird}{Dott. Nome3 Cognome3} % For multiple (up to 4) advisors -- if this is not present then also the remaining ones are automatically omitted
- %\newcommand{\advisorFourth}{Dott. Nome4 Cognome4} % For multiple (up to 4) advisors
- \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
- \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
- %\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
- %\newcommand{\coadvisorFourth}{Dott. co-Nome4 co-Cognome4} % For multiple (up to 4) coadvisors
- \begin{document}
- \maketitle
- %%%% La dedica
- \newpage
- \thispagestyle{empty}
- \null\vspace{\stretch{1}}
- \begin{flushright}
- \textit{Dedica}
- \end{flushright}
- \vspace{\stretch{3}}\null
- \newpage
- %%%% Gli indici
- \pagestyle{plain}
- \pagenumbering{roman}
- \tableofcontents
- %
- \listoffigures %Commentare se non vi sono Immagini
- \listofalgorithms %Commentare se non vi sono Algoritmi
- \listoftables %Commentare se non vi sono Tabelle
- %
- %
- %
- %%%% La prefazione
- \include{Capitoli/Introduzione}
- %
- %%%% I Capitoli di Contenuto
- \pagestyle{fancy}
- \include{Capitoli/Formattazione}
- \include{Capitoli/Background}
- \include{Capitoli/Obiettivi}
- \include{Capitoli/Progettazione-Implementazione}
- \include{Capitoli/Risultati}
- %
- %
- %%%% Le Conclusioni
- \pagestyle{plain}
- \include{Capitoli/Conclusione}
- %
- %%%% La bibliografia
- \bibliographystyle{apalike} %{plain} -- Scegliere lo stile preferito
- \cleardoublepage
- \addcontentsline{toc}{chapter}{\bibname}
- \bibliography{./Bibliografia}
- %
- \include{Capitoli/Ringraziamenti}
- %
- % Le appendici
- \appendix
- \include{Capitoli/Appendici/Appendice1}
- %
- \end{document}
Add Comment
Please, Sign In to add comment