feat: ✨ add boilerplate TeX
This commit is contained in:
parent
0765880dc4
commit
14b40eb1e0
8 changed files with 321 additions and 0 deletions
111
TeX/Arbeit.tex
Normal file
111
TeX/Arbeit.tex
Normal file
|
@ -0,0 +1,111 @@
|
|||
% LaTeX-Vorlage für Diplom- und Studienarbeiten für das
|
||||
% Institut für Antriebssysteme und Leistungselektronik
|
||||
% Version vom April 2017
|
||||
% Fehler oder Verbesserungsvorschläge bitte an latex@ial.uni-hannover.de
|
||||
|
||||
|
||||
% Achtung!
|
||||
%
|
||||
% Einstellungen für TexStudio (und alle anderen IDEs)
|
||||
% In "Optionen" -> "TexStudio Konfigurieren" -> "Befehle" -> "pdfLatex" muss "--shell-escape" hinzugefügt werden um Tikz zu nutzen. Bsp:
|
||||
% "C:\Program Files (x86)\MiKTeX 2.9\miktex\bin\pdflatex.exe" --shell-escape -synctex=1 -interaction=nonstopmode %.tex
|
||||
%
|
||||
% Einstellungen für Texnic-Center:
|
||||
% In "Ausgabe" -> "Ausgabeprofile" -> "LaTeX->PDF" muss folgendes Argument für MakeIndex eingestellt werden:
|
||||
% "%tm".nlo -s nomentbl.ist -o "%tm".nls
|
||||
% Außerdem muss hier auch "--shell-escape" zu den Compileroptionen hinzugefügt werden. Zum Beispiel so:
|
||||
% --shell-escape -synctex=-1 -max-print-line=120 -interaction=nonstopmode "%wm"
|
||||
%
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Definition des Dokuments (Schriftgröße, Blattgröße, Art des Layouts)
|
||||
|
||||
%Report - Druckversion (einseitig)
|
||||
%\documentclass[12pt,a4paper,openany,DIV16,BCOR20mm,bibliography=totoc,captions=tableheading, numbers=noenddot]{scrreprt}
|
||||
|
||||
%Report - Digitalversion (einseitig)
|
||||
%\documentclass[12pt,a4paper,openany,bibliography=totoc,captions=tableheading,numbers=noenddot]{scrreprt}
|
||||
|
||||
%Book - Druckversion (doppelseitig)
|
||||
\documentclass[12pt, a4paper, openany, DIV=16, BCOR=20mm, bibliography=totoc, captions=tableheading, numbers=noenddot]{scrbook}
|
||||
|
||||
%Book - Digitalversion (doppelseitig)
|
||||
%\documentclass[12pt,a4paper,openany,bibliography=totoc,,captions=tableheading,numbers=noenddot]{scrbook}
|
||||
|
||||
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Konfigurationsdateien
|
||||
|
||||
\include{./config/Pakete} %Datei für Pakete etc.
|
||||
|
||||
\makenomenclature %Index für das Verzeichnis der Formelzeichen
|
||||
\makeindex %Index für das Sachwortverzeichnis
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Beginn des Dokuments
|
||||
|
||||
\begin{document}
|
||||
|
||||
\include{./config/Konfiguration} %Layout und sonstige Konfigurationen
|
||||
\setlength{\parindent}{0pt}
|
||||
\setlength{\parskip}{12pt}
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Titelseiten für Studien- und Diplomarbeit
|
||||
|
||||
\pagenumbering{alph} %Seitennummerierung lateinische Kleinbuchstaben
|
||||
\include{Deckblatt}
|
||||
\clearpage{\thispagestyle{empty}\cleardoublepage} %leere Seite für "documentclass book"
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Inhaltsverzeichnis
|
||||
|
||||
\pagenumbering{roman} % Seitennummerierung arabische Zahlen
|
||||
\tableofcontents
|
||||
\clearpage %leere Seite für "documentclass book"
|
||||
|
||||
\listoftodos
|
||||
\todo{Disable ToDoList for the work}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Abbildungsverzeichnis
|
||||
|
||||
\listoffigures
|
||||
\addcontentsline{toc}{chapter}{Abbildungsverzeichnis} %Eintrag im Inhaltsverzeichnis
|
||||
\clearpage
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Tabellenverzeichnis
|
||||
|
||||
%\listoftables
|
||||
%\addcontentsline{toc}{chapter}{Tabellenverzeichnis} %Eintrag im Inhaltsverzeichnis
|
||||
%\clearpage
|
||||
|
||||
\printnomenclature %Verzeichnis drucken
|
||||
\clearpage{\pagestyle{empty}\cleardoublepage} %leere Seite für "documentclass book"
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Kapitel & Anhang
|
||||
|
||||
\section{Test!}
|
||||
|
||||
\begin{figure}
|
||||
\includegraphics{grafiken/datavis/Parasitics/SingleStage_Rf_Sweep.png}
|
||||
\end{figure}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Literaturverzeichnis
|
||||
|
||||
\bibliography{Literaturverzeichnis}
|
||||
\clearpage
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%Ende des Dokuments
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue