about summary refs log tree commit diff
path: root/langfassung/master.tex
diff options
context:
space:
mode:
Diffstat (limited to 'langfassung/master.tex')
-rwxr-xr-x[-rw-r--r--]langfassung/master.tex54
1 files changed, 45 insertions, 9 deletions
diff --git a/langfassung/master.tex b/langfassung/master.tex
index eedd29c..75e232f 100644..100755
--- a/langfassung/master.tex
+++ b/langfassung/master.tex
@@ -1,23 +1,43 @@
 \documentclass[a4paper,10pt]{scrartcl}
 \usepackage[top=2.5cm, bottom=2cm, left=2.5cm, right=2.5cm]{geometry}
+
+% UTF-8 support
 \usepackage[utf8]{inputenc}
+
+% german and english language support
 \usepackage[english,ngerman]{babel}
+
+% more math symbols
 \usepackage{amsmath}
+
+% advanced tables
 \usepackage{tabularx}
+
+% hide the hyperlinks
 \usepackage[hidelinks]{hyperref}
 
+% no newpage after include
+\usepackage{newclude}
+
+% fancy graphics
 \usepackage{graphicx}
+
+% more customizable captions
 \usepackage{caption}
+
+% nice font
 \usepackage{lmodern}
-\usepackage{textcomp}
-\usepackage[onehalfspacing]{setspace}
-\usepackage{setspace}
 
+% ???
+\usepackage{textcomp}
+% \usepackage[onehalfspacing]{setspace}
 % \linespread{0.95}
 
+% Tikz for designing graphics
 \usepackage{tikz}
 \usetikzlibrary{positioning}
 
+% code
 \usepackage{listings}
 \lstset{ %
   frame=single,	                   % adds a frame around the code
@@ -26,6 +46,7 @@
   stepnumber=1,                    % the step between two line-numbers. If it's 1, each line will be numbered
 }
 
+% hyperref / hyperlink settings
 \usepackage{hyperref}
 \hypersetup{
 colorlinks,
@@ -35,10 +56,12 @@ linkcolor=black,
 urlcolor=black
 }
 
+% renew some commands
 \newcommand{\bold}{\textbf}
 \renewcommand{\arraystretch}{1.5}
 \newcommand{ \rarrow }{\( \rightarrow \)}
 
+% redefine some parameters
 \setlength\parindent{0pt}
 \setlength\parskip{10pt}
 \setlength{\footskip}{30pt}
@@ -48,13 +71,16 @@ urlcolor=black
 
 \begin{document}
 
+% titlepage settings
 \title{Galaxy Generation}
 \subtitle{Jugend Forscht \the\year}
 \author{ Emile Hansmaennel \texttt{ emile.hansmaennel@gmail.com }}
 \date{\today}
 
+% generate the title using the informations given above
 \maketitle
 
+% include a nice image
 \begin{figure}[h]
   \centering
   \includegraphics[width=120mm, trim={0 8.5cm 0 8.5cm}, clip]{figs/galaxy}
@@ -62,33 +88,43 @@ urlcolor=black
   \caption{}
  \end{figure}
 
+% include the abstract
 \begin{abstract}
-\input{docs/1_kurzfassung}
+\include*{docs/1_kurzfassung}
 \end{abstract}
 
+% don't insert a page number on the first page
 \thispagestyle{empty}
 \clearpage
 \newpage
 \setcounter{page}{1}
 
+% generate a table of contents
 \tableofcontents
 \newpage
 
 \section{Einleitung} \label{Einleitung}
-\input{docs/2_einleitung}
+% \input{docs/2_einleitung}
+\include*{docs/2_einleitung}
 \newpage
 
 \section{Hauptteil} \label{Hauptteil}
-\input{docs/3_hauptteil}
+% \input{docs/3_hauptteil}
+\include*{docs/3_hauptteil}
 \newpage
 
 \section{Ergebnisse} \label{ergebnisse}
-\input{docs/4_ergebnisse}
+% \input{docs/4_ergebnisse}
+\include*{docs/4_ergebnisse}
 \newpage
 
 \section{Quellen und Hilfen} \label{quellen}
-\input{docs/5_quellen}
-
+% \input{docs/5_quellen}
+\include*{docs/5_quellen}
 \newpage
 
+\section{Nach der Abgabe...} \label{nach_der_abgabe}
+% \input{docs/6_abgabe}
+\include*{docs/6_abgabe}
+
 \end{document}