From c17127e0878f68f1808027ebd7e31ea506a12089 Mon Sep 17 00:00:00 2001 From: Carl Mai <carl.mai@tu-dresden.de> Date: Wed, 29 Aug 2018 14:29:10 +0200 Subject: [PATCH] more example text, show how math works etc. --- thesis.tex | 76 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 61 insertions(+), 15 deletions(-) diff --git a/thesis.tex b/thesis.tex index e199abc..142323f 100644 --- a/thesis.tex +++ b/thesis.tex @@ -2,11 +2,25 @@ \documentclass[ngerman,BCOR=8mm,cdfont=false,cdfont=nodin]{tudscrreprt} \usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} % opensans - see here: https://github.com/tud-cd/tudscr/issues/28 \usepackage[default]{opensans} -\usepackage{babel} +\usepackage[ngerman]{babel} \usepackage{isodate} +\usepackage[ + style=numeric-comp, + backend=biber, + url=false, + doi=false, + isbn=false, + hyperref, +]{biblatex} +\addbibresource{bibliography.bib} +\AtEveryBibitem{% + \clearfield{note}% +} + \usepackage[hidelinks]{hyperref} % makes all links clickable but hides ugly boxes \usepackage[capitalise,nameinlink,noabbrev]{cleveref} % automatically inserts Fig. X in the text with \cref{..} %\usepackage{cleveref} @@ -18,7 +32,18 @@ \usepackage[colorinlistoftodos,prependcaption,textsize=tiny]{todonotes} +\usepackage{graphicx} +\graphicspath{ {./images/} } + +% if you need mathy stuff +\newtheorem{lem}{Lemma} +\crefname{lem}{Lemma}{Lemmas} +\newtheorem{thm}{Theorem} +\crefname{thm}{Theorem}{Theorems} +\newtheorem{defs}{Definition} +\crefname{defs}{Def.}{Defs.} +\usepackage{blindtext} \begin{document} @@ -46,9 +71,10 @@ } \matriculationyear{2010} \supervisor{% - Dipl. Inf. ABC XYZ% + Dipl.-Inf. ABC XYZ% \and Dr. Thomas Kühn% - \and Dr. Sebastian Götz} + \and Dr. Sebastian Götz% +} \professor{Prof. Dr. rer. nat habil. Uwe Aßmann} \maketitle @@ -61,33 +87,53 @@ Thematische Einführung, Motivation Aufbau der Thesis vorstellen -In~\Cref{ch:conclusion}, kommt die Zusammenfassung. +In~\Cref{ch:conclusion} kommt die Zusammenfassung. + + +\chapter{Grundlagen}\label{ch:basics} +\section{Figures, Zitate, Mathe} +\begin{figure}[h] +\centering +\includegraphics[scale=0.8]{OMG_MOF_4levels} +\caption{Abc} +\end{figure} -\chapter{Grundlagen} \label{ch:basics} +Zitieren geht so~\cite{haddadin2013towards}. +\blindtext -Abcdefg.. \cite{haddadin2013towards} +Math: -\subsection{Was ist ABC?} +$A = \{x | x \in Y\}$ -Abcdefg.. +\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. + + + +\section{Was ist ABC?} + +\blindtext \chapter{Problemanalyse und Modellierung} -Abcdefg.. +\blindtext \todo[inline]{Write some more} -\chapter{Erprobung der Anwendungsinstallation} \label{ch:evaluation} +\chapter{Erprobung der Anwendungsinstallation}\label{ch:evaluation} + -Abcdefg.. +\blindtext -\chapter{Zusammenfassung} \label{ch:conclusion} +\chapter{Zusammenfassung}\label{ch:conclusion} -Abcdefg.. +\blindtext -\bibliography{bibliography} -\bibliographystyle{plain} +\printbibliography \confirmation \end{document} -- GitLab