GeoTopo.tex 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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{enumerate}
  12. \usepackage{braket} % needed for \Set
  13. \usepackage{csquotes}
  14. \usepackage{subfigure}
  15. \usepackage{parskip}
  16. \usepackage{pst-solides3d}
  17. \usepackage[colorinlistoftodos]{todonotes}
  18. \usepackage{pgfplots}
  19. \usepackage{tikz}
  20. \usepackage{tikz-3dplot}
  21. \usepackage{tkz-fct}
  22. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc}
  23. \usepackage{shortcuts}
  24. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  25. \newcommand{\glossarName}{Symbolvereichnis}
  26. \renewcommand{\indexname}{Stichwortverzeichnis}
  27. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  28. \title{Geometrie und Topologie}
  29. \makeglossaries
  30. \makeindex
  31. \hypersetup{
  32. pdfauthor = {Siehe GitHub},
  33. pdfkeywords = {Geometrie, Topologie},
  34. pdftitle = {Geometrie und Topologie}
  35. }
  36. \makeindex
  37. \usepackage{microtype}
  38. \begin{document}
  39. \pagenumbering{roman}
  40. \setcounter{page}{1}
  41. \maketitle
  42. \input{Vorwort}
  43. \tableofcontents
  44. \pagenumbering{arabic}
  45. \setcounter{page}{1}
  46. \input{Kapitel1}
  47. \appendix
  48. \input{Symbolverzeichnis}
  49. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  50. \printindex
  51. \end{document}