| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- \documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
- \usepackage{amsmath,amssymb}
- \usepackage[utf8]{inputenc} % this is needed for umlauts
- \usepackage[ngerman]{babel} % this is needed for umlauts
- \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
- \usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
- \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks]{hyperref}
- \usepackage{makeidx} % index
- \usepackage{enumerate}
- \usepackage{braket} % needed for \Set
- \usepackage{csquotes}
- \usepackage{parskip}
- \usepackage{tikz}
- \usetikzlibrary{3d,calc,intersections,er}
- \newcommand{\inputTikZ}[2]{%
- \scalebox{#1}{\input{#2}}
- }
- \usepackage{shortcuts}
- \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
- \title{Geometrie und Topologie}
- \makeindex
- \hypersetup{
- pdfauthor = {Siehe GitHub},
- pdfkeywords = {Geometrie, Topologie},
- pdftitle = {Geometrie und Topologie}
- }
- \begin{document}
- \maketitle
- \renewcommand{\thechapter}{\Roman{chapter}}
- %\chapter{Inhaltsverzeichnis}
- \addcontentsline{toc}{chapter}{Inhaltsverzeichnis}
- \tableofcontents
- \chapter*{Vorwort}
- Dieses Skript wird/wurde im Wintersemester 2013/2014 geschrieben.
- Es beinhaltet Vorlesungsnotizen von Studenten zur Vorlesung von
- Prof. Dr. Herrlich.
- Es darf jeder gerne Verbesserungen einbringen!
- \input{Kapitel1}
- \appendix
- \renewcommand{\indexname}{Stichwortverzeichnis}
- \addcontentsline{toc}{chapter}{Stichwortverzeichnis}
- \printindex
- \end{document}
|