GeoTopo.tex 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. \documentclass[DIV15,BCOR12mm]{scrbook}
  2. \newif\ifAFive\AFivefalse
  3. \ifAFive
  4. \KOMAoptions{paper=a5,twoside=true}
  5. \else
  6. \KOMAoptions{paper=a4,twoside=false}
  7. \fi
  8. \usepackage{etoolbox}
  9. \usepackage{amsmath,amssymb}% math symbols / fonts
  10. \usepackage{mathtools} % \xRightarrow
  11. \usepackage{nicefrac} % \nicefrac
  12. \usepackage[utf8]{inputenc} % this is needed for umlauts
  13. \usepackage[ngerman]{babel} % this is needed for umlauts
  14. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  15. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  16. \usepackage{framed}
  17. \usepackage{marvosym}
  18. \usepackage{makeidx} % for automatically generation of an index
  19. \usepackage{xcolor}
  20. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  21. \usepackage{breakurl} % allow line breaks in \href{ ... }
  22. \ifAFive
  23. \hypersetup{hidelinks=true}
  24. % no \else branch needed in this case
  25. \fi
  26. \usepackage{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
  27. \usepackage{tabto}
  28. \usepackage{braket} % needed for \Set
  29. \usepackage{csquotes} % \enquote{}
  30. \usepackage{subfig} % multiple figures in one
  31. \usepackage{parskip} % nicer paragraphs
  32. \usepackage{xifthen} % \isempty
  33. \usepackage{changepage} % for the adjustwidth environment
  34. \usepackage{pst-solides3d}
  35. \usepackage[colorinlistoftodos]{todonotes}
  36. \usepackage{pgfplots}
  37. \pgfplotsset{compat=1.7}
  38. \usepackage[arrow, matrix, curve]{xy}
  39. \usepackage{caption} % get newlines within captions
  40. \usepackage{tikz} % draw
  41. \usepackage{tikz-3dplot} % draw
  42. \usepackage{tkz-fct} % draw
  43. \usepackage{tkz-euclide} % draw
  44. \usetkzobj{all} % tkz-euclide
  45. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  46. \usepackage{tqft}
  47. \usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
  48. \usepackage[german,nameinlink]{cleveref} % has to be after hyperref, ntheorem, amsthm
  49. \usepackage{acronym}
  50. \usepackage{shortcuts}
  51. \usepackage{fancyhdr}
  52. \pagestyle{fancy}
  53. \renewcommand{\chaptermark}[1]%
  54. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  55. \renewcommand{\sectionmark}[1]%
  56. {\markright{\MakeUppercase{\thesection.\ #1}}}
  57. \renewcommand{\headrulewidth}{0.5pt}
  58. \renewcommand{\footrulewidth}{0pt}
  59. \newcommand{\helv}{%
  60. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  61. \fancyhf{}
  62. \fancyhead[LO,RE]{\helv \thepage}
  63. \fancyhead[LE]{\helv \leftmark}
  64. \fancyhead[RO]{\helv \rightmark}
  65. \fancypagestyle{plain}{%
  66. \fancyhead{}
  67. \renewcommand{\headrulewidth}{0pt}
  68. }
  69. \hypersetup{
  70. pdfauthor = {Martin Thoma},
  71. pdfkeywords = {Geometrie, Topologie},
  72. pdftitle = {Geometrie und Topologie}
  73. }
  74. \makeindex
  75. \allowdisplaybreaks
  76. \usepackage{microtype}
  77. \begin{document}
  78. \pagenumbering{roman}
  79. \setcounter{page}{1}
  80. \input{titlepage}
  81. \input{Vorwort}
  82. \tableofcontents
  83. \pagenumbering{arabic}
  84. \setcounter{page}{1}
  85. \input{Kapitel1}
  86. \input{Kapitel2}
  87. \input{Kapitel3}
  88. \input{Kapitel4}
  89. \input{Kapitel5}
  90. \input{Loesungen}
  91. \appendix
  92. \input{Bildquellen}
  93. \clearpage
  94. \input{Abkuerzungen}
  95. \clearpage
  96. \input{Symbolverzeichnis}
  97. \clearpage
  98. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  99. \renewcommand{\indexname}{Stichwortverzeichnis}
  100. \printindex
  101. \end{document}