GeoTopo.tex 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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{braket} % needed for \Set
  18. \usepackage{csquotes}
  19. \usepackage{subfigure}
  20. \usepackage{parskip}
  21. \usepackage{pst-solides3d}
  22. \usepackage[colorinlistoftodos]{todonotes}
  23. \usepackage{pgfplots}
  24. \usepackage[arrow, matrix, curve]{xy}
  25. \usepackage{caption} % get newlines within captions
  26. \usepackage{tikz}
  27. \usepackage{tikz-3dplot}
  28. \usepackage{tkz-fct}
  29. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  30. \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
  31. \usepackage{shortcuts}
  32. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  33. \newcommand{\glossarName}{Symbolverzeichnis}
  34. \renewcommand{\indexname}{Stichwortverzeichnis}
  35. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  36. \title{Geometrie und Topologie\\
  37. \vspace{10cm}
  38. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  39. \makeglossaries
  40. \makeindex
  41. \hypersetup{
  42. pdfauthor = {Siehe GitHub},
  43. pdfkeywords = {Geometrie, Topologie},
  44. pdftitle = {Geometrie und Topologie}
  45. }
  46. \makeindex
  47. \usepackage{microtype}
  48. \begin{document}
  49. \pagenumbering{roman}
  50. \setcounter{page}{1}
  51. \maketitle
  52. \input{Vorwort}
  53. \tableofcontents
  54. \pagenumbering{arabic}
  55. \setcounter{page}{1}
  56. \input{Kapitel1}
  57. \appendix
  58. \input{Symbolverzeichnis}
  59. \clearpage
  60. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  61. \printindex
  62. \end{document}