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
Ende des Dokumentes auf Seite~\pageref{sec:bibliography}~-- alle
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
\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
% change to english for english theses
\documentclass[ngerman,BCOR=1.5cm,twoside]{tudscrreprt}
%\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
\documentclass[english,BCOR=1.5cm,twoside]{tudscrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
%\usepackage[ngerman]{babel}
\usepackage{isodate}
\usepackage[
......@@ -84,8 +82,7 @@
\institute{Institut für Software- und Multimediatechnik}
\chair{Lehrstuhl für Softwaretechnologie}
\title{%
Entwicklung eines optimalen Verfahrens zur Eroberung des
Geldspeichers in Entenhausen
Title of the Thesis
}
%% for a bachelor thesis
......@@ -100,22 +97,21 @@
%\thesis{diploma}
%\graduation[Dipl.Inf.]{Diplom-Informatiker}
\author{Mickey Mouse}
\emailaddress[]{mickey.mouse@tu-dresden.de}
\author{Firstname Lastname}
\emailaddress[]{firstname.lastname@tu-dresden.de}
\matriculationnumber{12345678}
\matriculationyear{2016}
\dateofbirth{1.1.1990}
\placeofbirth{Dresden}
%\discipline{Distributed Systems Engineering}
\course{Distributed Systems Engineering}
\course{Computer Science (M. Sc)}
\supervisor{%
Dipl.-Inf. ABC XYZ%
\and Dr. Sebastian Götz%
Firstname Lastname
}
\professor{Prof. Dr. rer. nat habil. Uwe Aßmann}
\date{10.10.2018}
\date{\today}
\maketitle
\newpage
......@@ -123,11 +119,20 @@
\listoffigures
\listoftables
\input{sections/einleitung}
\input{sections/grundlagen.tex}
\input{sections/problem.tex}
\input{sections/eval.tex}
\input{sections/zusammenfassung.tex}
% put the chapters in different file in your thesis and include them
% e.g. via \input{chapterFolder/chapterFile}
\chapter{Introduction}
\section{Motivation and Problem Statement}
\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}%
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment