GeoTopo.tex 2.9 KB

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