GeoTopo.tex 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
  2. \usepackage{etoolbox}
  3. \usepackage{amsmath,amssymb}
  4. \usepackage[utf8]{inputenc} % this is needed for umlauts
  5. \usepackage[ngerman]{babel} % this is needed for umlauts
  6. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  7. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  8. \usepackage{framed}
  9. \usepackage{marvosym}
  10. \usepackage{makeidx} % for automatically generation of an index
  11. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  12. \usepackage[xindy,toc,nonumberlist]{glossaries} % for symbol table, has to be after hyperref
  13. \usepackage{glossary-mcols}
  14. \glossarystyle{mcolindex} % two column design for glossary
  15. %\usepackage{enumerate}
  16. \usepackage{enumitem}
  17. \usepackage{tabto}
  18. \usepackage{braket} % needed for \Set
  19. \usepackage{csquotes}
  20. \usepackage{subfigure}
  21. \usepackage{parskip}
  22. \usepackage{pst-solides3d}
  23. \usepackage[colorinlistoftodos]{todonotes}
  24. \usepackage{pgfplots}
  25. \pgfplotsset{compat=1.7}
  26. \usepackage[arrow, matrix, curve]{xy}
  27. \usepackage{caption} % get newlines within captions
  28. \usepackage{tikz}
  29. \usepackage{tikz-3dplot}
  30. \usepackage{tkz-fct}
  31. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  32. \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
  33. \usepackage{shortcuts}
  34. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  35. \newcommand{\glossarName}{Symbolverzeichnis}
  36. \renewcommand{\indexname}{Stichwortverzeichnis}
  37. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  38. \title{Geometrie und Topologie\\
  39. \vspace{10cm}
  40. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  41. \makeglossaries
  42. \makeindex
  43. \hypersetup{
  44. pdfauthor = {Siehe GitHub},
  45. pdfkeywords = {Geometrie, Topologie},
  46. pdftitle = {Geometrie und Topologie}
  47. }
  48. \makeindex
  49. \usepackage{microtype}
  50. \begin{document}
  51. \pagenumbering{roman}
  52. \setcounter{page}{1}
  53. \maketitle
  54. \input{Vorwort}
  55. \tableofcontents
  56. \pagenumbering{arabic}
  57. \setcounter{page}{1}
  58. \input{Kapitel1}
  59. \appendix
  60. \input{Symbolverzeichnis}
  61. \clearpage
  62. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  63. \printindex
  64. \end{document}