Skip to content
Snippets Groups Projects
Commit 14d4ec76 authored by Andreas Domanowski's avatar Andreas Domanowski
Browse files

Add exemplary thesis structure

parent a224c7ba
No related branches found
No related tags found
No related merge requests found
Pipeline #13140 passed with warnings
\chapter{Weitere Latex-Dokumentation} \chapter{Weitere Latex-Dokumentation (German)}
Nachdem nun der Vorspann und~-- bis auf das Literaturverzeichnis am Nachdem nun der Vorspann und~-- bis auf das Literaturverzeichnis am
Ende des Dokumentes auf Seite~\pageref{sec:bibliography}~-- alle Ende des Dokumentes auf Seite~\pageref{sec:bibliography}~-- alle
Verzeichnisse erfolgreich ausgegeben wurden, wird nun die Verwendung Verzeichnisse erfolgreich ausgegeben wurden, wird nun die Verwendung
......
\chapter{Einleitung}\label{ch:introduction}
Thematische Einführung, Motivation
\paragraph{Ziel der Arbeit:} Konzept entwickeln, welches Zonenbasierte MRI mit Kraftsteuerung vereinigt.
Aufbau der Thesis vorstellen
In~\Cref{ch:conclusion} kommt die Zusammenfassung.
\chapter{Erprobung der Anwendungsinstallation}\label{ch:evaluation}
\blindtext
\section{Figures, Zitate, Mathe}
\begin{figure}[h]
\centering
\includegraphics[scale=0.8]{OMG_MOF_4levels}
\caption{Das ist eine schlechte Grafik --- zu viele Pixel. Versuche Vektorgrafiken zu nutzen. Selbst malen geht gut mit draw.io powerpoint
oder inkscape}\label{fig:mof}
\end{figure}
Wenn eine Abbildung verwendet wird, muss diese immer unbedingt im Text referenziert und beschrieben werden.
Z.B. so: \Cref{fig:mof}.
Zitieren geht so~\cite{haddadin2013towards}.
Math:
$A = \{x | x \in Y\}$
\begin{defs}\label{def:abc}
A \textbf{Petrinet} is a tuple ${\Sigma = (P, T, F, W)}$.
\end{defs}
Petrinets are defined in~\Cref{def:abc}. See at the head of this document how to create your own definitions/lemma environments.
\chapter{Grundlagen}\label{ch:basics}
\input{sections/figures}
\input{sections/install}
\section{Was ist ABC?}
\blindtext
\subsection{Installation}
\textbf{Windows:} miktex
\textbf{Linux:} texlive-full
\textbf{GUI-Editor} texstudio
Konfiguration vom Editor: Preferences > Build
* default compiler: \emph{latexmk}
\chapter{Problemanalyse und Modellierung}
\blindtext
\todo[inline]{Write some more}
\begin{lstlisting}[language=AST,label={lst:example-ast},caption={Example AST}]
RailwayContainer ::= Route* Region*;
abstract RailwayElement ::= <Id:int>;
Region : RailwayElement ::= TrackElement* Sensor*;
Semaphore : RailwayElement ::= <Signal:Signal>;
Route : RailwayElement ::= <Active:boolean> SwitchPosition*;
SwitchPosition : RailwayElement ::= <Position:Position>;
Sensor : RailwayElement;
abstract TrackElement:RailwayElement;
Segment : TrackElement ::= <Length:int> Semaphore*;
Switch : TrackElement ::= <CurrentPosition:Position>;
\end{lstlisting}
%
Das Listing~\ref{lst:example-ast} zeigt eine beispielhafte Grammatik, welche im Attribute im folgenden Listing genutzt wird:
\lstinputlisting[language=JRAG,style=unboxed]{code/requiredSensor.jrag}
\chapter{Zusammenfassung}\label{ch:conclusion}
\blindtext
% the following command is only required if the thesis is written in german % the following command is only required if the thesis is written in german
\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst} %\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
\documentclass[english,BCOR=1.5cm,twoside]{tudscrreprt}
% change to english for english theses
\documentclass[ngerman,BCOR=1.5cm,twoside]{tudscrreprt}
\usepackage[T1]{fontenc} \usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} \usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel} %\usepackage[ngerman]{babel}
\usepackage{isodate} \usepackage{isodate}
\usepackage[ \usepackage[
...@@ -84,8 +82,7 @@ ...@@ -84,8 +82,7 @@
\institute{Institut für Software- und Multimediatechnik} \institute{Institut für Software- und Multimediatechnik}
\chair{Lehrstuhl für Softwaretechnologie} \chair{Lehrstuhl für Softwaretechnologie}
\title{% \title{%
Entwicklung eines optimalen Verfahrens zur Eroberung des Title of the Thesis
Geldspeichers in Entenhausen
} }
%% for a bachelor thesis %% for a bachelor thesis
...@@ -100,22 +97,21 @@ ...@@ -100,22 +97,21 @@
%\thesis{diploma} %\thesis{diploma}
%\graduation[Dipl.Inf.]{Diplom-Informatiker} %\graduation[Dipl.Inf.]{Diplom-Informatiker}
\author{Mickey Mouse} \author{Firstname Lastname}
\emailaddress[]{mickey.mouse@tu-dresden.de} \emailaddress[]{firstname.lastname@tu-dresden.de}
\matriculationnumber{12345678} \matriculationnumber{12345678}
\matriculationyear{2016} \matriculationyear{2016}
\dateofbirth{1.1.1990} \dateofbirth{1.1.1990}
\placeofbirth{Dresden} \placeofbirth{Dresden}
%\discipline{Distributed Systems Engineering} %\discipline{Distributed Systems Engineering}
\course{Distributed Systems Engineering} \course{Computer Science (M. Sc)}
\supervisor{% \supervisor{%
Dipl.-Inf. ABC XYZ% Firstname Lastname
\and Dr. Sebastian Götz%
} }
\professor{Prof. Dr. rer. nat habil. Uwe Aßmann} \professor{Prof. Dr. rer. nat habil. Uwe Aßmann}
\date{10.10.2018} \date{\today}
\maketitle \maketitle
\newpage \newpage
...@@ -123,11 +119,20 @@ ...@@ -123,11 +119,20 @@
\listoffigures \listoffigures
\listoftables \listoftables
\input{sections/einleitung} % put the chapters in different file in your thesis and include them
\input{sections/grundlagen.tex} % e.g. via \input{chapterFolder/chapterFile}
\input{sections/problem.tex} \chapter{Introduction}
\input{sections/eval.tex} \section{Motivation and Problem Statement}
\input{sections/zusammenfassung.tex} \section{Research Questions}
\chapter{Background}
\chapter{Related Work and Literature Analysis}
\chapter{Problem Analysis}
\chapter{Solution Design}
\chapter{Implementation}
\chapter{Evaluation}
\chapter{Conclusion}
\printbibliography[heading=bibintoc]\label{sec:bibliography}% \printbibliography[heading=bibintoc]\label{sec:bibliography}%
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment