added statuten pdf
[svn42.git] / documents / statuten / main.tex
diff --git a/documents/statuten/main.tex b/documents/statuten/main.tex
new file mode 100644 (file)
index 0000000..471eeee
--- /dev/null
@@ -0,0 +1,121 @@
+%----------------------------------------------------------------
+%
+%  File    :  main.tex
+%
+%  Author  :  <Your Name>
+%
+%  Created :  <Creation Date>
+%
+%----------------------------------------------------------------
+
+% Add documents that should additionally be shown in the
+% file explorer of WinEdt (menu on the left side)
+
+%-------------------------DOCUMENT-PROPERTIES--------------------
+
+\documentclass[11pt, oneside, a4paper]{book}
+
+% Definition of writing area
+\setlength{\textwidth}{15 true cm}
+\setlength{\textheight}{23 true cm}
+\oddsidemargin 0.5 cm
+\evensidemargin 0.5 cm
+\topmargin 0 cm
+
+%-------------------------PACKAGES-------------------------------
+
+% Load Babel language support
+\usepackage[austrian, german]{babel}
+
+\usepackage{textcomp}
+\usepackage{amsmath}
+\usepackage{amsfonts}
+\usepackage{mathcomp}
+\usepackage{acronym}
+\usepackage{subfigure}
+% Produce important box (see section MACROS below)
+% Used commands: environment "Sbox"
+\usepackage{fancybox}
+\usepackage{color}
+% Used commands: \url
+\usepackage{url}
+
+% OPTIONAL
+% Make TOC, references, citations and URLs clickable
+% Add bookmarks to a pdf document
+% Interesting options: pdfpagelabels, pdftitle={...}, pdfauthor={...}, pdfsubject={...}
+% Used commands: \phantomsection, \href
+\usepackage[plainpages=false, pdfpagelabels]{hyperref}
+
+% Provide command \phantomsection in case the package hyperref is not loaded
+\providecommand*{\phantomsection}{}
+
+% My custom commands
+\newcommand{\FigureWidth}{10cm}
+
+% OPTIONAL
+% Create Index
+% Hints: - Include "makeidx" in the options list of the command \documentclass
+%        - If a word should be included in the Index, prepend it with the command \index
+%          e.g. \index{LaTeX}LaTeX
+%          The parameter of the command \index is used as the text of the Index entry
+%        - Also sections can be included in the Index (see the documentation for details)
+%\makeindex
+%\usepackage{makeidx}
+
+%-------------------------GRAPHICS-------------------------------
+
+% for PDFLaTeX
+\newif\ifpdf
+\ifx\pdfoutput\undefined
+    \pdffalse
+\else
+    \pdfoutput=1
+    \pdftrue
+\fi
+
+\ifpdf
+    \usepackage[pdftex]{graphicx}
+    \DeclareGraphicsExtensions{.png, .jpg, .pdf}
+\else
+    \usepackage{graphicx}
+    \DeclareGraphicsExtensions{.ps, .eps}
+\fi
+
+% Add graphics paths in the following way:
+% \graphicspath{{path1/}{path2/}...}
+\graphicspath{{gfx/}{gfx/ch_hints/}}
+
+%-------------------------MACROS---------------------------------
+
+% Use the important environment (important box) to emphasize important things
+\newenvironment{important}
+{\begin{Sbox}\begin{minipage}{11cm}}{\end{minipage}\end{Sbox}
+\begin{center}\shadowbox{\TheSbox}\end{center}}
+
+% Command: todo
+\newcommand{\todo}[1]
+{\marginpar{\baselineskip0ex\rule{2,5cm}{0.5pt}\\[0ex]{\textcolor{red}{\tiny\textsf{#1}}}}}
+%\newcommand{\todo}[1]{}
+
+%----------------------------------------------------------------
+%-------------------------DOCUMENT-CONTENT-----------------------
+
+% Specify the tex-files that should be included only (if you want to reduce compilation time)
+%\includeonly{title, pledge, acknowledgements, abstracts}
+%\includeonly{preface, introduction, hints, conclusions, appendix, bibliography}
+
+\begin{document}
+
+  \selectlanguage{german}
+
+  %-------------------------FRONTMATTER----------------------------
+  \frontmatter
+  \pagestyle{plain}
+
+  %-------------------------MAINMATTER-----------------------------
+  \mainmatter
+  \pagestyle{headings}
+  \include{statuten}             % Title Page
+
+\end{document}