GeoTopo.tex 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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{makeidx} % for automatically generation of an index
  9. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  10. \usepackage[xindy,toc,nonumberlist]{glossaries} % for symbol table, has to be after hyperref
  11. \usepackage{glossary-mcols}
  12. %\glossarystyle{mcolindex} % two column design for glossary
  13. \usepackage{enumerate}
  14. \usepackage{braket} % needed for \Set
  15. \usepackage{csquotes}
  16. \usepackage{subfigure}
  17. \usepackage{parskip}
  18. \usepackage{pst-solides3d}
  19. \usepackage[colorinlistoftodos]{todonotes}
  20. \usepackage{pgfplots}
  21. \usepackage{tikz}
  22. \usepackage{tikz-3dplot}
  23. \usepackage{tkz-fct}
  24. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns}
  25. \usepackage{shortcuts}
  26. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  27. \newcommand{\glossarName}{Symbolvereichnis}
  28. \renewcommand{\indexname}{Stichwortverzeichnis}
  29. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  30. \title{Geometrie und Topologie\\
  31. \vspace{1cm}
  32. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  33. \makeglossaries
  34. \makeindex
  35. \hypersetup{
  36. pdfauthor = {Siehe GitHub},
  37. pdfkeywords = {Geometrie, Topologie},
  38. pdftitle = {Geometrie und Topologie}
  39. }
  40. \makeindex
  41. \usepackage{microtype}
  42. \begin{document}
  43. \pagenumbering{roman}
  44. \setcounter{page}{1}
  45. \maketitle
  46. \input{Vorwort}
  47. \tableofcontents
  48. \pagenumbering{arabic}
  49. \setcounter{page}{1}
  50. \input{Kapitel1}
  51. \appendix
  52. \input{Symbolverzeichnis}
  53. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  54. \printindex
  55. \end{document}