GeoTopo.tex 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
  2. \usepackage{etoolbox}
  3. \usepackage{amsmath,amssymb}% math symbols / fonts
  4. \usepackage{nicefrac} % \nicefrac
  5. \usepackage[utf8]{inputenc} % this is needed for umlauts
  6. \usepackage[ngerman]{babel} % this is needed for umlauts
  7. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  8. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  9. \usepackage{framed}
  10. \usepackage{marvosym}
  11. \usepackage{makeidx} % for automatically generation of an index
  12. \usepackage{xcolor}
  13. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  14. \usepackage[xindy,toc,nonumberlist]{glossaries} % for symbol table, has to be after hyperref
  15. \usepackage{glossary-mcols}
  16. \glossarystyle{mcolindex} % two column design for glossary
  17. %\usepackage{enumerate}
  18. \usepackage{enumitem}
  19. \usepackage{tabto}
  20. \usepackage{braket} % needed for \Set
  21. \usepackage{csquotes} % \enquote{}
  22. \usepackage{subfigure} % multiple figures in one
  23. \usepackage{parskip} % nicer paragraphs
  24. \usepackage{xifthen} % \isempty
  25. \usepackage{changepage} % for the adjustwidth environment
  26. \usepackage{pst-solides3d}
  27. \usepackage[colorinlistoftodos]{todonotes}
  28. \usepackage{pgfplots}
  29. \pgfplotsset{compat=1.7}
  30. \usepackage[arrow, matrix, curve]{xy}
  31. \usepackage{caption} % get newlines within captions
  32. \usepackage{tikz} % draw
  33. \usepackage{tikz-3dplot} % draw
  34. \usepackage{tkz-fct} % draw
  35. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  36. \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
  37. \usepackage{shortcuts}
  38. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  39. \newcommand{\glossarName}{Symbolverzeichnis}
  40. \renewcommand{\indexname}{Stichwortverzeichnis}
  41. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  42. \title{Geometrie und Topologie\\
  43. \vspace{10cm}
  44. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  45. \makeglossaries
  46. \makeindex
  47. \hypersetup{
  48. pdfauthor = {Siehe GitHub},
  49. pdfkeywords = {Geometrie, Topologie},
  50. pdftitle = {Geometrie und Topologie}
  51. }
  52. \makeindex
  53. \usepackage{microtype}
  54. \begin{document}
  55. \pagenumbering{roman}
  56. \setcounter{page}{1}
  57. \maketitle
  58. \input{Vorwort}
  59. \tableofcontents
  60. \pagenumbering{arabic}
  61. \setcounter{page}{1}
  62. \input{Kapitel1}
  63. \input{Loesungen}
  64. \appendix
  65. \input{Symbolverzeichnis}
  66. \clearpage
  67. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  68. \printindex
  69. \end{document}