2013-10-22 12:05:19 +02:00
|
|
|
\documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
|
2013-10-23 07:00:11 +02:00
|
|
|
\usepackage{etoolbox}
|
2013-11-04 12:32:31 +01:00
|
|
|
\usepackage{amsmath,amssymb}% math symbols / fonts
|
2013-11-09 01:28:15 +01:00
|
|
|
\usepackage{mathtools} % \xRightarrow
|
2013-11-05 23:13:12 +01:00
|
|
|
\usepackage{nicefrac} % \nicefrac
|
2013-10-22 12:05:19 +02:00
|
|
|
\usepackage[utf8]{inputenc} % this is needed for umlauts
|
|
|
|
\usepackage[ngerman]{babel} % this is needed for umlauts
|
|
|
|
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
|
|
|
\usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
|
2013-10-28 21:27:21 +01:00
|
|
|
\usepackage{framed}
|
|
|
|
\usepackage{marvosym}
|
2013-10-23 07:00:11 +02:00
|
|
|
\usepackage{makeidx} % for automatically generation of an index
|
2013-11-05 23:13:12 +01:00
|
|
|
\usepackage{xcolor}
|
2013-10-23 07:00:11 +02:00
|
|
|
\usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
|
2013-10-26 21:29:41 +02:00
|
|
|
\usepackage[xindy,toc,nonumberlist]{glossaries} % for symbol table, has to be after hyperref
|
2013-10-27 11:16:34 +01:00
|
|
|
\usepackage{glossary-mcols}
|
2013-11-03 21:05:08 +01:00
|
|
|
\glossarystyle{mcolindex} % two column design for glossary
|
2013-10-29 11:08:18 +01:00
|
|
|
%\usepackage{enumerate}
|
|
|
|
\usepackage{enumitem}
|
2013-11-04 10:34:19 +01:00
|
|
|
\usepackage{tabto}
|
2013-11-04 12:32:31 +01:00
|
|
|
\usepackage{braket} % needed for \Set
|
|
|
|
\usepackage{csquotes} % \enquote{}
|
2013-11-08 20:34:20 +01:00
|
|
|
\usepackage{subfig} % multiple figures in one
|
2013-11-04 12:32:31 +01:00
|
|
|
\usepackage{parskip} % nicer paragraphs
|
2013-11-05 11:11:07 +01:00
|
|
|
\usepackage{xifthen} % \isempty
|
|
|
|
\usepackage{changepage} % for the adjustwidth environment
|
2013-10-23 07:26:10 +02:00
|
|
|
\usepackage{pst-solides3d}
|
2013-10-25 01:41:03 +02:00
|
|
|
\usepackage[colorinlistoftodos]{todonotes}
|
|
|
|
\usepackage{pgfplots}
|
2013-11-04 10:34:19 +01:00
|
|
|
\pgfplotsset{compat=1.7}
|
2013-10-29 15:07:12 +01:00
|
|
|
\usepackage[arrow, matrix, curve]{xy}
|
2013-11-04 12:32:31 +01:00
|
|
|
\usepackage{caption} % get newlines within captions
|
|
|
|
\usepackage{tikz} % draw
|
|
|
|
\usepackage{tikz-3dplot} % draw
|
|
|
|
\usepackage{tkz-fct} % draw
|
2013-10-30 18:37:08 +01:00
|
|
|
\usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
|
2013-10-29 11:08:18 +01:00
|
|
|
\usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
|
2013-10-22 12:05:19 +02:00
|
|
|
\usepackage{shortcuts}
|
|
|
|
|
2013-11-09 01:28:15 +01:00
|
|
|
\usepackage{fancyhdr}
|
|
|
|
\pagestyle{fancy}
|
|
|
|
\renewcommand{\chaptermark}[1]%
|
|
|
|
{\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
|
|
|
|
\renewcommand{\sectionmark}[1]%
|
|
|
|
{\markright{\MakeUppercase{\thesection.\ #1}}}
|
|
|
|
\renewcommand{\headrulewidth}{0.5pt}
|
|
|
|
\renewcommand{\footrulewidth}{0pt}
|
|
|
|
\newcommand{\helv}{%
|
|
|
|
\fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
|
|
|
|
\fancyhf{}
|
|
|
|
\fancyhead[LE,RO]{\helv \thepage}
|
|
|
|
\fancyhead[LO]{\helv \rightmark}
|
|
|
|
\fancyhead[RE]{\helv \leftmark}
|
|
|
|
|
|
|
|
|
2013-10-26 21:29:41 +02:00
|
|
|
% Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
|
2013-10-27 12:46:08 +01:00
|
|
|
\newcommand{\glossarName}{Symbolverzeichnis}
|
2013-10-26 21:29:41 +02:00
|
|
|
\renewcommand{\indexname}{Stichwortverzeichnis}
|
2013-10-25 00:01:22 +02:00
|
|
|
|
2013-11-06 23:09:12 +01:00
|
|
|
\author{Siehe \href{http://tinyurl.com/GeoTopo}{tinyurl.com/GeoTopo}}
|
2013-10-27 12:17:00 +01:00
|
|
|
\title{Geometrie und Topologie\\
|
2013-10-28 08:49:09 +01:00
|
|
|
\vspace{10cm}
|
2013-10-27 12:17:00 +01:00
|
|
|
\includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
|
2013-10-25 00:01:22 +02:00
|
|
|
\makeglossaries
|
2013-10-22 12:05:19 +02:00
|
|
|
\makeindex
|
|
|
|
|
|
|
|
\hypersetup{
|
2013-11-06 23:09:12 +01:00
|
|
|
pdfauthor = {Siehe tinyurl.com/GeoTopo},
|
2013-10-22 12:05:19 +02:00
|
|
|
pdfkeywords = {Geometrie, Topologie},
|
|
|
|
pdftitle = {Geometrie und Topologie}
|
2013-10-23 07:26:10 +02:00
|
|
|
}
|
2013-10-22 12:05:19 +02:00
|
|
|
|
2013-10-23 07:00:11 +02:00
|
|
|
\makeindex
|
|
|
|
|
2013-10-23 07:42:20 +02:00
|
|
|
\usepackage{microtype}
|
|
|
|
|
2013-10-22 12:05:19 +02:00
|
|
|
\begin{document}
|
2013-10-26 21:11:11 +02:00
|
|
|
\pagenumbering{roman}
|
|
|
|
\setcounter{page}{1}
|
2013-10-22 12:05:19 +02:00
|
|
|
\maketitle
|
2013-10-26 21:11:11 +02:00
|
|
|
\input{Vorwort}
|
2013-10-22 12:05:19 +02:00
|
|
|
\tableofcontents
|
|
|
|
|
2013-10-26 21:11:11 +02:00
|
|
|
\pagenumbering{arabic}
|
|
|
|
\setcounter{page}{1}
|
2013-10-22 12:05:19 +02:00
|
|
|
\input{Kapitel1}
|
|
|
|
|
2013-11-05 11:11:07 +01:00
|
|
|
\input{Loesungen}
|
|
|
|
|
2013-10-22 12:05:19 +02:00
|
|
|
\appendix
|
2013-10-25 00:01:22 +02:00
|
|
|
\input{Symbolverzeichnis}
|
2013-10-27 12:46:08 +01:00
|
|
|
\clearpage
|
2013-10-22 12:05:19 +02:00
|
|
|
\addcontentsline{toc}{chapter}{Stichwortverzeichnis}
|
|
|
|
\printindex
|
|
|
|
\end{document}
|