GeoTopo.tex 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. \ifAFive
  22. \hypersetup{hidelinks=true}
  23. % no \else branch needed in this case
  24. \fi
  25. \usepackage{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
  26. \usepackage{tabto}
  27. \usepackage{braket} % needed for \Set
  28. \usepackage{csquotes} % \enquote{}
  29. \usepackage{subfig} % multiple figures in one
  30. \usepackage{parskip} % nicer paragraphs
  31. \usepackage{xifthen} % \isempty
  32. \usepackage{changepage} % for the adjustwidth environment
  33. \usepackage{pst-solides3d}
  34. \usepackage[colorinlistoftodos]{todonotes}
  35. \usepackage{pgfplots}
  36. \pgfplotsset{compat=1.7}
  37. \usepackage[arrow, matrix, curve]{xy}
  38. \usepackage{caption} % get newlines within captions
  39. \usepackage{tikz} % draw
  40. \usepackage{tikz-3dplot} % draw
  41. \usepackage{tkz-fct} % draw
  42. \usepackage{tkz-euclide} % draw
  43. \usetkzobj{all} % tkz-euclide
  44. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
  45. \usepackage{tqft}
  46. \usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
  47. \usepackage[german,nameinlink]{cleveref} % has to be after hyperref, ntheorem, amsthm
  48. \usepackage{shortcuts}
  49. \usepackage{fancyhdr}
  50. \pagestyle{fancy}
  51. \renewcommand{\chaptermark}[1]%
  52. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  53. \renewcommand{\sectionmark}[1]%
  54. {\markright{\MakeUppercase{\thesection.\ #1}}}
  55. \renewcommand{\headrulewidth}{0.5pt}
  56. \renewcommand{\footrulewidth}{0pt}
  57. \newcommand{\helv}{%
  58. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  59. \fancyhf{}
  60. \fancyhead[LE,RO]{\helv \thepage}
  61. \fancyhead[LO]{\helv \rightmark}
  62. \fancyhead[RE]{\helv \leftmark}
  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. \input{titlepage}
  74. \input{Vorwort}
  75. \tableofcontents
  76. \pagenumbering{arabic}
  77. \setcounter{page}{1}
  78. \input{Kapitel1}
  79. \input{Kapitel2}
  80. \input{Kapitel3}
  81. \input{Kapitel4}
  82. \input{Loesungen}
  83. \appendix
  84. \input{Bildquellen}
  85. \clearpage
  86. \input{Symbolverzeichnis}
  87. \clearpage
  88. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  89. \renewcommand{\indexname}{Stichwortverzeichnis}
  90. \printindex
  91. \end{document}