GeoTopo.tex 3.1 KB

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