GeoTopo.tex 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
  2. \usepackage{amsmath,amssymb}
  3. \usepackage[utf8]{inputenc} % this is needed for umlauts
  4. \usepackage[ngerman]{babel} % this is needed for umlauts
  5. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  6. \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
  7. \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks]{hyperref}
  8. \usepackage{makeidx} % index
  9. \usepackage{enumerate}
  10. \usepackage{braket} % needed for \Set
  11. \usepackage{csquotes}
  12. \usepackage{parskip}
  13. \usepackage{shortcuts}
  14. \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
  15. \title{Geometrie und Topologie}
  16. \makeindex
  17. \hypersetup{
  18. pdfauthor = {Siehe GitHub},
  19. pdfkeywords = {Geometrie, Topologie},
  20. pdftitle = {Geometrie und Topologie}
  21. }
  22. \begin{document}
  23. \maketitle
  24. \renewcommand{\thechapter}{\Roman{chapter}}
  25. %\chapter{Inhaltsverzeichnis}
  26. \addcontentsline{toc}{chapter}{Inhaltsverzeichnis}
  27. \tableofcontents
  28. \chapter*{Vorwort}
  29. Dieses Skript wird/wurde im Wintersemester 2013/2014 geschrieben.
  30. Es beinhaltet Vorlesungsnotizen von Studenten zur Vorlesung von
  31. Prof. Dr. Herrlich.
  32. Es darf jeder gerne Verbesserungen einbringen!
  33. \input{Kapitel1}
  34. \appendix
  35. \renewcommand{\indexname}{Stichwortverzeichnis}
  36. \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
  37. \printindex
  38. \end{document}