GeoTopo.tex 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
  16. \usepackage{tabto}
  17. \usepackage{braket} % needed for \Set
  18. \usepackage{csquotes} % \enquote{}
  19. \usepackage{subfig} % multiple figures in one
  20. \usepackage{parskip} % nicer paragraphs
  21. \usepackage{xifthen} % \isempty
  22. \usepackage{changepage} % for the adjustwidth environment
  23. \usepackage{pst-solides3d}
  24. \usepackage[colorinlistoftodos]{todonotes}
  25. \usepackage{pgfplots}
  26. \pgfplotsset{compat=1.7}
  27. \usepackage[arrow, matrix, curve]{xy}
  28. \usepackage{caption} % get newlines within captions
  29. \usepackage{tikz} % draw
  30. \usepackage{tikz-3dplot} % draw
  31. \usepackage{tkz-fct} % draw
  32. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  33. \usepackage{tqft}
  34. \usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
  35. \usepackage[german,nameinlink]{cleveref} % has to be after hyperref, ntheorem, amsthm
  36. \usepackage{shortcuts}
  37. \usepackage{fancyhdr}
  38. \pagestyle{fancy}
  39. \renewcommand{\chaptermark}[1]%
  40. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  41. \renewcommand{\sectionmark}[1]%
  42. {\markright{\MakeUppercase{\thesection.\ #1}}}
  43. \renewcommand{\headrulewidth}{0.5pt}
  44. \renewcommand{\footrulewidth}{0pt}
  45. \newcommand{\helv}{%
  46. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  47. \fancyhf{}
  48. \fancyhead[LE,RO]{\helv \thepage}
  49. \fancyhead[LO]{\helv \rightmark}
  50. \fancyhead[RE]{\helv \leftmark}
  51. \makeindex
  52. \hypersetup{
  53. pdfauthor = {Siehe tinyurl.com/GeoTopo},
  54. pdfkeywords = {Geometrie, Topologie},
  55. pdftitle = {Geometrie und Topologie}
  56. }
  57. \makeindex
  58. \usepackage{microtype}
  59. \begin{document}
  60. \pagenumbering{roman}
  61. \setcounter{page}{1}
  62. \input{titlepage}
  63. \input{Vorwort}
  64. \tableofcontents
  65. \pagenumbering{arabic}
  66. \setcounter{page}{1}
  67. \input{Kapitel1}
  68. \input{Kapitel2}
  69. \input{Kapitel3}
  70. \input{Kapitel4}
  71. \input{Loesungen}
  72. \appendix
  73. \input{Bildquellen}
  74. \clearpage
  75. \input{Symbolverzeichnis}
  76. \clearpage
  77. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  78. \renewcommand{\indexname}{Stichwortverzeichnis}
  79. \printindex
  80. \end{document}