initial coomit
This commit is contained in:
9
chapters/anforderungen.tex
Normal file
9
chapters/anforderungen.tex
Normal file
@@ -0,0 +1,9 @@
|
||||
%
|
||||
% Chapter: Anforderungen
|
||||
%
|
||||
|
||||
\chapter{Anforderungen}
|
||||
\label{chap:anforderungen}
|
||||
|
||||
\section{Methodik und Planung}
|
||||
\section{Ergebnisse}
|
154
chapters/cheatsheet.tex
Normal file
154
chapters/cheatsheet.tex
Normal file
@@ -0,0 +1,154 @@
|
||||
%
|
||||
% Chapter: Foobar
|
||||
%
|
||||
|
||||
\chapter{Example Markup}
|
||||
\label{chap:example-markup}
|
||||
|
||||
Example citation:\\
|
||||
Wer testet, der questet.\cite{bib:vodafone-legt-in-pirmasens}\\
|
||||
|
||||
Example thicc text:\\
|
||||
Wer testet, der \textbf{questet}.\\
|
||||
|
||||
Example italic text:\\
|
||||
Wer testet, der \textit{questet}.\\
|
||||
|
||||
Example monospace text:\\
|
||||
Wer testet, der \texttt{questet}.\\
|
||||
|
||||
Example emphasized text:\\
|
||||
Wer testet, der \emph{questet}.\\
|
||||
|
||||
Example quotation marks:\\
|
||||
Wer testet, der \enquote{questet}.\\
|
||||
|
||||
Example acronym:\\
|
||||
Wer dual studiert, braucht eine \ac{PRAP}. Wer eine \ac{PRAP} dokumentiert, kann diese Vorlage verwenden.\\
|
||||
|
||||
Example plural acronym:\\
|
||||
Damit kann man ganz einfach viele \acp{PRAP} dokumentieren.\\
|
||||
|
||||
Example linking (to an image, for example):\\
|
||||
Wie im Bild \fullref{fig:stars} zu sehen ist, gibt es tolle Sterne.\\
|
||||
Dieses Bild steht in dem Kapiel \fullref{chap:example-markup}.
|
||||
|
||||
Example ordinary list:\\
|
||||
\begin{enumerate}
|
||||
\item Apple
|
||||
\item Beans
|
||||
\item More Beans
|
||||
\end{enumerate}
|
||||
|
||||
Example itemized list:\\
|
||||
\begin{itemize}
|
||||
\item Apple
|
||||
\item Beans
|
||||
\item More Beans
|
||||
\end{itemize}
|
||||
|
||||
Example descriptive list:\\
|
||||
\begin{description}
|
||||
\item[Apple] A fruit.
|
||||
\item[Beans] Not a fruit.
|
||||
\item[More Beans] That's a lot of beans!
|
||||
\end{description}
|
||||
|
||||
Example nested lists (works with any type of list):\\
|
||||
\begin{enumerate}
|
||||
\item Apple
|
||||
\item Beans
|
||||
\item More Beans
|
||||
\begin{itemize}
|
||||
\item Soy Beans
|
||||
\item Kidney Beans
|
||||
\end{itemize}
|
||||
\end{enumerate}
|
||||
|
||||
% Example Figure/Image:
|
||||
\begin{nicepic}
|
||||
\includegraphics[width=0.9\textwidth]{images/stars.jpg}
|
||||
\captionof{figure}{Sterne}
|
||||
\caption*{Quelle: \cite{bib:vodafone-legt-in-pirmasens}}
|
||||
\label{fig:stars}
|
||||
\end{nicepic}
|
||||
|
||||
% Example Multifigure/multiple images
|
||||
\begin{figure}[!htbp]
|
||||
\begin{subfigure}[t]{0.3\textwidth}
|
||||
\includegraphics[width=\textwidth]{images/mult0.jpg}
|
||||
\caption{}{Lichtpunkte auf dunklem Hintergrund}
|
||||
\caption*{Quelle: \cite{bib:vodafone-legt-in-pirmasens}}
|
||||
\label{fig:light-points-on-dark-bg}
|
||||
\end{subfigure}
|
||||
\hfill
|
||||
\begin{subfigure}[t]{0.3\textwidth}
|
||||
\includegraphics[width=\textwidth]{images/mult1.png}
|
||||
\caption{}{Ein Tannenbaum}
|
||||
\caption*{Quelle: \cite{bib:vodafone-legt-in-pirmasens}}
|
||||
\label{fig:tannenbaum}
|
||||
\end{subfigure}
|
||||
\hfill
|
||||
\begin{subfigure}[t]{0.3\textwidth}
|
||||
\includegraphics[width=\textwidth]{images/mult2.jpg}
|
||||
\caption{}{Eine Winterstadt}
|
||||
\caption*{Quelle: \cite{bib:vodafone-legt-in-pirmasens}}
|
||||
\label{fig:winter-city}
|
||||
\end{subfigure}
|
||||
|
||||
\caption{Ein Beispiel für mehrere Bilder nebeneinander}
|
||||
\end{figure}
|
||||
|
||||
% Example Table:
|
||||
\begin{table}[!htbp] % !htbp
|
||||
\centering
|
||||
\begin{tabular}{|l|l|r|}
|
||||
\hline
|
||||
\textbf{TM Configuration} & \textbf{Detail-Level} & \textbf{Frametime}\\
|
||||
\hline
|
||||
\hline
|
||||
Tensor-800 & 0 & 28\\
|
||||
Tensor-800 & 1 & 52\\
|
||||
Tensor-800 & 2 & 69\\
|
||||
Tensor-800 & 3 & 89\\
|
||||
\hdashline
|
||||
V-Core Zenyx 33 & 0 & 2\\
|
||||
V-Core Zenyx 33 & 1 & 4\\
|
||||
V-Core Zenyx 33 & 2 & 5\\
|
||||
V-Core Zenyx 33 & 3 & 7\\
|
||||
\hdashline
|
||||
Intel iZ237-8 & 0 & 298\\
|
||||
Intel iZ237-8 & 1 & 448\\
|
||||
Intel iZ237-8 & 2 & 556\\
|
||||
Intel iZ237-8 & 3 & 767\\
|
||||
\hline
|
||||
\end{tabular}
|
||||
\caption{Eine Beispieltabelle}
|
||||
\label{tbl:renderzeiten_tm_processors}
|
||||
\end{table}
|
||||
|
||||
% Example Table with multiline rows in a cell:
|
||||
\begin{table}[!htbp] % !htbp
|
||||
\centering
|
||||
\begin{tabular}{|l|l|r|}
|
||||
\hline
|
||||
\textbf{Kind} & \textbf{Mind}\\
|
||||
\hline
|
||||
\hline
|
||||
Tensor-800& \makecell[l]{idk man\\just do a linebreak}\\
|
||||
\hline
|
||||
\end{tabular}
|
||||
\caption{Mehrzeilige Tabellenzellen}
|
||||
\label{tbl:multiple-lines-in-cell}
|
||||
\end{table}
|
||||
% Example code:
|
||||
\begin{code}
|
||||
// Example code
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
std::cout << "Hello, World!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
\end{code}
|
5
chapters/einleitung/main.tex
Normal file
5
chapters/einleitung/main.tex
Normal file
@@ -0,0 +1,5 @@
|
||||
%
|
||||
% Chapter: Einleitung
|
||||
%
|
||||
|
||||
\chapter{Einleitung}
|
7
chapters/einleitung/methodik.tex
Normal file
7
chapters/einleitung/methodik.tex
Normal file
@@ -0,0 +1,7 @@
|
||||
%
|
||||
% Chapter: Einleitung/Methodik
|
||||
%
|
||||
|
||||
\section{Methodische Vorgehensweise}
|
||||
|
||||
|
6
chapters/einleitung/problemstellung.tex
Normal file
6
chapters/einleitung/problemstellung.tex
Normal file
@@ -0,0 +1,6 @@
|
||||
%
|
||||
% Chapter: Einleitung/Problemstellung
|
||||
%
|
||||
|
||||
\section{Problemstellung}
|
||||
|
6
chapters/einleitung/zielsetzung.tex
Normal file
6
chapters/einleitung/zielsetzung.tex
Normal file
@@ -0,0 +1,6 @@
|
||||
%
|
||||
% Chapter: Einleitung/Zielsetzung
|
||||
%
|
||||
|
||||
\section{Zielsetzung}
|
||||
|
10
chapters/evaluation.tex
Normal file
10
chapters/evaluation.tex
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
%
|
||||
% Chapter: Evaluation
|
||||
%
|
||||
|
||||
\chapter{Evaluation}
|
||||
\section{Einschätzung zur Integrationsflexibilät}
|
||||
\section{Auswertung des Integrationsaufwandes}
|
||||
\section{Zusammenfassung}
|
||||
|
11
chapters/fazit.tex
Normal file
11
chapters/fazit.tex
Normal file
@@ -0,0 +1,11 @@
|
||||
%
|
||||
% Chapter: Fazit
|
||||
%
|
||||
|
||||
\chapter{Fazit}
|
||||
\section{Ausblick}
|
||||
|
||||
\section{Offene Fragen}
|
||||
|
||||
\section{Aussprechen der Handlungsempfehlung}
|
||||
|
5
chapters/grundlagen/main.tex
Normal file
5
chapters/grundlagen/main.tex
Normal file
@@ -0,0 +1,5 @@
|
||||
%
|
||||
% Chapter: Grundlagen
|
||||
%
|
||||
|
||||
\chapter{Grundlagen}
|
6
chapters/marktanalyse.tex
Normal file
6
chapters/marktanalyse.tex
Normal file
@@ -0,0 +1,6 @@
|
||||
%
|
||||
% Chapter: Marktanalyse
|
||||
%
|
||||
|
||||
\chapter{Marktanalyse}
|
||||
|
34
chapters/title.tex
Normal file
34
chapters/title.tex
Normal file
@@ -0,0 +1,34 @@
|
||||
%
|
||||
% Title page
|
||||
%
|
||||
|
||||
\begin{titlepage}
|
||||
\cfgUniversityName\\
|
||||
\cfgUniversityDepartment\\
|
||||
Studiengang \cfgUniversityDegreeCourse\\
|
||||
\\
|
||||
\cfgDocClassification\\
|
||||
\cfgCourseName\\
|
||||
|
||||
\begin{center}
|
||||
\Huge
|
||||
\cfgDocTitle\\
|
||||
\vspace{10mm}
|
||||
\Large
|
||||
\cfgDocSubTitle\\
|
||||
\vspace{15mm}
|
||||
\normalsize
|
||||
Version \cfgDocVersion
|
||||
\end{center}
|
||||
|
||||
\vfill
|
||||
Vorgelegt von\\
|
||||
\vspace{3mm} \ \\
|
||||
\cfgAuthorName, \cfgAuthorMatriculationNum\\
|
||||
\cfgAuthorContact\\
|
||||
Im \cfgSemesterName\\
|
||||
\vspace{3mm} \ \\
|
||||
bei \cfgUniversitySupervisorName\\
|
||||
\cfgUniversitySupervisorContact\\
|
||||
|
||||
\end{titlepage}
|
Reference in New Issue
Block a user