GeoTopo.tex 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
  2. \usepackage{etoolbox}
  3. \usepackage{amsmath,amssymb}% math symbols / fonts
  4. \usepackage{mathtools} % \xRightarrow
  5. \usepackage{nicefrac} % \nicefrac
  6. \usepackage[utf8]{inputenc} % this is needed for umlauts
  7. \usepackage[ngerman]{babel} % this is needed for umlauts
  8. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  9. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  10. \usepackage{framed}
  11. \usepackage{marvosym}
  12. \usepackage{makeidx} % for automatically generation of an index
  13. \usepackage{xcolor}
  14. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  15. \usepackage[xindy,toc,nonumberlist]{glossaries} % for symbol table, has to be after hyperref
  16. \usepackage{glossary-mcols}
  17. \glossarystyle{mcolindex} % two column design for glossary
  18. %\usepackage{enumerate}
  19. \usepackage{enumitem}
  20. \usepackage{tabto}
  21. \usepackage{braket} % needed for \Set
  22. \usepackage{csquotes} % \enquote{}
  23. \usepackage{subfig} % multiple figures in one
  24. \usepackage{parskip} % nicer paragraphs
  25. \usepackage{xifthen} % \isempty
  26. \usepackage{changepage} % for the adjustwidth environment
  27. \usepackage{pst-solides3d}
  28. \usepackage[colorinlistoftodos]{todonotes}
  29. \usepackage{pgfplots}
  30. \pgfplotsset{compat=1.7}
  31. \usepackage[arrow, matrix, curve]{xy}
  32. \usepackage{caption} % get newlines within captions
  33. \usepackage{tikz} % draw
  34. \usepackage{tikz-3dplot} % draw
  35. \usepackage{tkz-fct} % draw
  36. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  37. \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
  38. \usepackage{shortcuts}
  39. \usepackage{fancyhdr}
  40. \pagestyle{fancy}
  41. \renewcommand{\chaptermark}[1]%
  42. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  43. \renewcommand{\sectionmark}[1]%
  44. {\markright{\MakeUppercase{\thesection.\ #1}}}
  45. \renewcommand{\headrulewidth}{0.5pt}
  46. \renewcommand{\footrulewidth}{0pt}
  47. \newcommand{\helv}{%
  48. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  49. \fancyhf{}
  50. \fancyhead[LE,RO]{\helv \thepage}
  51. \fancyhead[LO]{\helv \rightmark}
  52. \fancyhead[RE]{\helv \leftmark}
  53. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  54. \newcommand{\glossarName}{Symbolverzeichnis}
  55. \renewcommand{\indexname}{Stichwortverzeichnis}
  56. \author{Siehe \href{http://tinyurl.com/GeoTopo}{tinyurl.com/GeoTopo}}
  57. \title{Geometrie und Topologie\\
  58. \vspace{10cm}
  59. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  60. \makeglossaries
  61. \makeindex
  62. \hypersetup{
  63. pdfauthor = {Siehe tinyurl.com/GeoTopo},
  64. pdfkeywords = {Geometrie, Topologie},
  65. pdftitle = {Geometrie und Topologie}
  66. }
  67. \makeindex
  68. \usepackage{microtype}
  69. \begin{document}
  70. \pagenumbering{roman}
  71. \setcounter{page}{1}
  72. \maketitle
  73. \input{Vorwort}
  74. \tableofcontents
  75. \pagenumbering{arabic}
  76. \setcounter{page}{1}
  77. \input{Kapitel1}
  78. \input{Kapitel2}
  79. \input{Loesungen}
  80. \appendix
  81. \input{Symbolverzeichnis}
  82. \clearpage
  83. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  84. \printindex
  85. \end{document}