GeoTopo.tex 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. \makeglossaries
  32. \makeindex
  33. \hypersetup{
  34. pdfauthor = {Siehe GitHub},
  35. pdfkeywords = {Geometrie, Topologie},
  36. pdftitle = {Geometrie und Topologie}
  37. }
  38. \makeindex
  39. \usepackage{microtype}
  40. \begin{document}
  41. \pagenumbering{roman}
  42. \setcounter{page}{1}
  43. \maketitle
  44. \input{Vorwort}
  45. \tableofcontents
  46. \pagenumbering{arabic}
  47. \setcounter{page}{1}
  48. \input{Kapitel1}
  49. \appendix
  50. \input{Symbolverzeichnis}
  51. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  52. \printindex
  53. \end{document}