GeoTopo.tex 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
  2. \usepackage{etoolbox}
  3. \usepackage{amsmath,amssymb}
  4. \usepackage[utf8]{inputenc} % this is needed for umlauts
  5. \usepackage[ngerman]{babel} % this is needed for umlauts
  6. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  7. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  8. \usepackage{makeidx} % for automatically generation of an index
  9. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
  10. \usepackage{enumerate}
  11. \usepackage{braket} % needed for \Set
  12. \usepackage{csquotes}
  13. \usepackage{parskip}
  14. \usepackage{pst-solides3d}
  15. \usepackage{tikz}
  16. \usetikzlibrary{3d,calc,intersections,er,arrows,positioning}
  17. \newcommand{\inputTikZ}[2]{%
  18. \scalebox{#1}{\input{#2}}
  19. }
  20. \usepackage{shortcuts}
  21. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  22. \title{Geometrie und Topologie}
  23. \makeindex
  24. \hypersetup{
  25. pdfauthor = {Siehe GitHub},
  26. pdfkeywords = {Geometrie, Topologie},
  27. pdftitle = {Geometrie und Topologie}
  28. }
  29. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  30. % make the index link to the correct part of the page %
  31. % http://tex.stackexchange.com/q/74493/5645 %
  32. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  33. \newcounter{indexanchor}
  34. \newcommand*{\xindex}[1]{%
  35. \stepcounter{indexanchor}% make anchor unique
  36. \def\theindexterm{#1}%
  37. \edef\doindexentry{\noexpand\index
  38. {\expandonce\theindexterm|indexanchor{index-\theindexanchor}}}%
  39. \raisebox{\baselineskip}{\hypertarget{index-\theindexanchor}%
  40. {\doindexentry}}%
  41. }
  42. \newcommand*{\indexanchor}[2]{\hyperlink{#1}{#2}}
  43. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  44. \makeindex
  45. \usepackage{microtype}
  46. \begin{document}
  47. \maketitle
  48. \renewcommand{\thechapter}{\Roman{chapter}}
  49. %\chapter{Inhaltsverzeichnis}
  50. \addcontentsline{toc}{chapter}{Inhaltsverzeichnis}
  51. \tableofcontents
  52. \chapter*{Vorwort}
  53. Dieses Skript wird/wurde im Wintersemester 2013/2014 geschrieben.
  54. Es beinhaltet Vorlesungsnotizen von Studenten zur Vorlesung von
  55. Prof. Dr. Herrlich.
  56. Es darf jeder gerne Verbesserungen einbringen!
  57. \input{Kapitel1}
  58. \appendix
  59. \renewcommand{\indexname}{Stichwortverzeichnis}
  60. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  61. \printindex
  62. \end{document}