GeoTopo.tex 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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{tqft}
  38. \usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
  39. \usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
  40. \usepackage{shortcuts}
  41. \usepackage{fancyhdr}
  42. \pagestyle{fancy}
  43. \renewcommand{\chaptermark}[1]%
  44. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  45. \renewcommand{\sectionmark}[1]%
  46. {\markright{\MakeUppercase{\thesection.\ #1}}}
  47. \renewcommand{\headrulewidth}{0.5pt}
  48. \renewcommand{\footrulewidth}{0pt}
  49. \newcommand{\helv}{%
  50. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  51. \fancyhf{}
  52. \fancyhead[LE,RO]{\helv \thepage}
  53. \fancyhead[LO]{\helv \rightmark}
  54. \fancyhead[RE]{\helv \leftmark}
  55. % Setze den richtigen Namen für das Glossar und das Stichwortverzeichnis
  56. \newcommand{\glossarName}{Symbolverzeichnis}
  57. \renewcommand{\indexname}{Stichwortverzeichnis}
  58. \author{Siehe \href{http://tinyurl.com/GeoTopo}{tinyurl.com/GeoTopo}}
  59. \title{Geometrie und Topologie\\
  60. \vspace{10cm}
  61. \includegraphics[width=0.9\linewidth]{figures/Torus.pdf}}
  62. \makeglossaries
  63. \makeindex
  64. \hypersetup{
  65. pdfauthor = {Siehe tinyurl.com/GeoTopo},
  66. pdfkeywords = {Geometrie, Topologie},
  67. pdftitle = {Geometrie und Topologie}
  68. }
  69. \makeindex
  70. \usepackage{microtype}
  71. \begin{document}
  72. \pagenumbering{roman}
  73. \setcounter{page}{1}
  74. \maketitle
  75. \input{Vorwort}
  76. \tableofcontents
  77. \pagenumbering{arabic}
  78. \setcounter{page}{1}
  79. \input{Kapitel1}
  80. \input{Kapitel2}
  81. \input{Kapitel3}
  82. \input{Loesungen}
  83. \appendix
  84. \input{Bildquellen}
  85. \clearpage
  86. \input{Symbolverzeichnis}
  87. \clearpage
  88. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  89. \printindex
  90. \end{document}