GeoTopo.tex 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
  2. \usepackage{etoolbox}
  3. \usepackage{amsmath,amssymb}% math symbols / fonts
  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{tabto}
  18. \usepackage{braket} % needed for \Set
  19. \usepackage{csquotes} % \enquote{}
  20. \usepackage{subfigure} % multiple figures in one
  21. \usepackage{parskip} % nicer paragraphs
  22. \usepackage{xifthen} % \isempty
  23. \usepackage{changepage} % for the adjustwidth environment
  24. \usepackage{pst-solides3d}
  25. \usepackage[colorinlistoftodos]{todonotes}
  26. \usepackage{pgfplots}
  27. \pgfplotsset{compat=1.7}
  28. \usepackage[arrow, matrix, curve]{xy}
  29. \usepackage{caption} % get newlines within captions
  30. \usepackage{tikz} % draw
  31. \usepackage{tikz-3dplot} % draw
  32. \usepackage{tkz-fct} % draw
  33. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  34. \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
  35. \usepackage{shortcuts}
  36. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  37. \newcommand{\glossarName}{Symbolverzeichnis}
  38. \renewcommand{\indexname}{Stichwortverzeichnis}
  39. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  40. \title{Geometrie und Topologie\\
  41. \vspace{10cm}
  42. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  43. \makeglossaries
  44. \makeindex
  45. \hypersetup{
  46. pdfauthor = {Siehe GitHub},
  47. pdfkeywords = {Geometrie, Topologie},
  48. pdftitle = {Geometrie und Topologie}
  49. }
  50. \makeindex
  51. \usepackage{microtype}
  52. \begin{document}
  53. \pagenumbering{roman}
  54. \setcounter{page}{1}
  55. \maketitle
  56. \input{Vorwort}
  57. \tableofcontents
  58. \pagenumbering{arabic}
  59. \setcounter{page}{1}
  60. \input{Kapitel1}
  61. \input{Loesungen}
  62. \appendix
  63. \input{Symbolverzeichnis}
  64. \clearpage
  65. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  66. \printindex
  67. \end{document}