GeoTopo.tex 2.1 KB

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