GeoTopo.tex 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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{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,noabbrev]{cleveref} % has to be after hyperref, ntheorem, amsthm
  48. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  49. \usepackage{array,xtab,ragged2e} % for symbol table
  50. \newlength\mylengtha
  51. \newlength\mylengthb
  52. \newcolumntype{P}[1]{>{\RaggedRight}p{#1}}
  53. \tabcolsep=3pt % default: 6pt
  54. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  55. \usepackage{acronym}
  56. \usepackage{cancel}
  57. \usepackage{shortcuts}
  58. \usepackage{fancyhdr}
  59. \pagestyle{fancy}
  60. \renewcommand{\chaptermark}[1]%
  61. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  62. \renewcommand{\sectionmark}[1]%
  63. {\markright{\MakeUppercase{\thesection.\ #1}}}
  64. \renewcommand{\headrulewidth}{0.5pt}
  65. \renewcommand{\footrulewidth}{0pt}
  66. \newcommand{\helv}{%
  67. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  68. \fancyhf{}
  69. \fancyhead[LO,RE]{\helv \thepage}
  70. \fancyhead[LE]{\helv \leftmark}
  71. \fancyhead[RO]{\helv \rightmark}
  72. \fancypagestyle{plain}{%
  73. \fancyhead{}
  74. \renewcommand{\headrulewidth}{0pt}
  75. }
  76. \hypersetup{
  77. pdfauthor = {Martin Thoma},
  78. pdfkeywords = {Geometrie, Topologie},
  79. pdftitle = {Geometrie und Topologie}
  80. }
  81. \makeindex
  82. \allowdisplaybreaks
  83. \usepackage{microtype}
  84. \begin{document}
  85. \pagenumbering{roman}
  86. \setcounter{page}{1}
  87. \input{titlepage}
  88. \input{Vorwort}
  89. \tableofcontents
  90. \ifAFive
  91. \cleardoublepage
  92. \fi
  93. \pagenumbering{arabic}
  94. \setcounter{page}{1}
  95. \input{Kapitel1}
  96. \input{Kapitel2}
  97. \input{Kapitel3}
  98. \input{Kapitel4}
  99. \input{Kapitel5}
  100. \input{Loesungen}
  101. \appendix
  102. \input{Bildquellen}
  103. \clearpage
  104. \input{Abkuerzungen}
  105. \clearpage
  106. \input{Definitionen}
  107. \clearpage
  108. \input{Symbolverzeichnis}
  109. \clearpage
  110. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  111. \renewcommand{\indexname}{Stichwortverzeichnis}
  112. \printindex
  113. \end{document}