| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
- \usepackage{etoolbox}
- \usepackage{amsmath,amssymb}% math symbols / fonts
- \usepackage{mathtools} % \xRightarrow
- \usepackage{nicefrac} % \nicefrac
- \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}
- \usepackage{framed}
- \usepackage{marvosym}
- \usepackage{makeidx} % for automatically generation of an index
- \usepackage{xcolor}
- \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
- \usepackage[xindy,toc,nonumberlist]{glossaries} % for symbol table, has to be after hyperref
- \usepackage{glossary-mcols}
- \glossarystyle{mcolindex} % two column design for glossary
- %\usepackage{enumerate}
- \usepackage{enumitem}
- \usepackage{tabto}
- \usepackage{braket} % needed for \Set
- \usepackage{csquotes} % \enquote{}
- \usepackage{subfig} % multiple figures in one
- \usepackage{parskip} % nicer paragraphs
- \usepackage{xifthen} % \isempty
- \usepackage{changepage} % for the adjustwidth environment
- \usepackage{pst-solides3d}
- \usepackage[colorinlistoftodos]{todonotes}
- \usepackage{pgfplots}
- \pgfplotsset{compat=1.7}
- \usepackage[arrow, matrix, curve]{xy}
- \usepackage{caption} % get newlines within captions
- \usepackage{tikz} % draw
- \usepackage{tikz-3dplot} % draw
- \usepackage{tkz-fct} % draw
- \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
- \usepackage{tqft}
- \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
- \usepackage{shortcuts}
- \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}
- % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
- \newcommand{\glossarName}{Symbolverzeichnis}
- \renewcommand{\indexname}{Stichwortverzeichnis}
- \author{Siehe \href{http://tinyurl.com/GeoTopo}{tinyurl.com/GeoTopo}}
- \title{Geometrie und Topologie\\
- \vspace{10cm}
- \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
- \makeglossaries
- \makeindex
- \hypersetup{
- pdfauthor = {Siehe tinyurl.com/GeoTopo},
- pdfkeywords = {Geometrie, Topologie},
- pdftitle = {Geometrie und Topologie}
- }
- \makeindex
- \usepackage{microtype}
- \begin{document}
- \pagenumbering{roman}
- \setcounter{page}{1}
- \maketitle
- \input{Vorwort}
- \tableofcontents
- \pagenumbering{arabic}
- \setcounter{page}{1}
- \input{Kapitel1}
- \input{Kapitel2}
- \input{Loesungen}
- \appendix
- \input{Symbolverzeichnis}
- \clearpage
- \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
- \printindex
- \end{document}
|