GeoTopo.tex 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. \documentclass[DIV15,BCOR12mm]{scrbook}
  2. \pdfoutput=1
  3. \newif\ifAFive\AFivefalse
  4. \ifAFive
  5. \KOMAoptions{paper=a5,twoside=true}
  6. \else
  7. \KOMAoptions{paper=a4,twoside=false}
  8. \fi
  9. \usepackage{etoolbox}
  10. \usepackage{amsmath,amssymb}% math symbols / fonts
  11. \usepackage{mathtools} % \xRightarrow
  12. \usepackage{nicefrac} % \nicefrac
  13. \usepackage[utf8]{inputenc} % this is needed for umlauts
  14. \usepackage[ngerman]{babel} % this is needed for umlauts
  15. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  16. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  17. \usepackage{framed}
  18. \usepackage{marvosym}
  19. \usepackage{makeidx} % for automatically generation of an index
  20. \usepackage{xcolor}
  21. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  22. \usepackage{breakurl} % allow line breaks in \href{ ... }
  23. \ifAFive
  24. \hypersetup{hidelinks=true}
  25. % no \else branch needed in this case
  26. \fi
  27. \usepackage{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
  28. \usepackage{tabto}
  29. \usepackage{braket} % needed for \Set
  30. \usepackage{csquotes} % \enquote{}
  31. \usepackage{subfig} % multiple figures in one
  32. \usepackage{parskip} % nicer paragraphs
  33. \usepackage{xifthen} % \isempty
  34. \usepackage{changepage} % for the adjustwidth environment
  35. \usepackage{pst-solides3d}
  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,noabbrev]{cleveref} % has to be after hyperref, ntheorem, amsthm
  49. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  50. \usepackage{array,xtab,ragged2e} % for symbol table
  51. \newlength\mylengtha
  52. \newlength\mylengthb
  53. \newcolumntype{P}[1]{>{\RaggedRight}p{#1}}
  54. \tabcolsep=3pt % default: 6pt
  55. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  56. \usepackage{acronym}
  57. \usepackage{cancel}
  58. \usepackage{shortcuts}
  59. \usepackage{fancyhdr}
  60. \pagestyle{fancy}
  61. \renewcommand{\chaptermark}[1]%
  62. {\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
  63. \renewcommand{\sectionmark}[1]%
  64. {\markright{\MakeUppercase{\thesection.\ #1}}}
  65. \renewcommand{\headrulewidth}{0.5pt}
  66. \renewcommand{\footrulewidth}{0pt}
  67. \newcommand{\helv}{%
  68. \fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
  69. \fancyhf{}
  70. \fancyhead[LO,RE]{\helv \thepage}
  71. \fancyhead[LE]{\helv \leftmark}
  72. \fancyhead[RO]{\helv \rightmark}
  73. \fancypagestyle{plain}{%
  74. \fancyhead{}
  75. \renewcommand{\headrulewidth}{0pt}
  76. }
  77. \hypersetup{
  78. pdfauthor = {Martin Thoma},
  79. pdfkeywords = {Geometrie, Topologie},
  80. pdftitle = {Geometrie und Topologie}
  81. }
  82. \makeindex
  83. \allowdisplaybreaks
  84. \usepackage{microtype}
  85. \begin{document}
  86. \pagenumbering{roman}
  87. \setcounter{page}{1}
  88. \input{titlepage}
  89. \input{Vorwort}
  90. \tableofcontents
  91. \ifAFive
  92. \cleardoublepage
  93. \fi
  94. \pagenumbering{arabic}
  95. \setcounter{page}{1}
  96. \input{Kapitel1}
  97. \input{Kapitel2}
  98. \input{Kapitel3}
  99. \input{Kapitel4}
  100. \input{Kapitel5}
  101. \input{Loesungen}
  102. \appendix
  103. \input{Bildquellen}
  104. \clearpage
  105. \input{Abkuerzungen}
  106. \clearpage
  107. \input{Definitionen}
  108. \clearpage
  109. \input{Symbolverzeichnis}
  110. \clearpage
  111. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  112. \renewcommand{\indexname}{Stichwortverzeichnis}
  113. \printindex
  114. \end{document}