2013-10-22 12:05:19 +02:00
|
|
|
\documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
|
2013-10-23 07:00:11 +02:00
|
|
|
\usepackage{etoolbox}
|
2013-10-22 12:05:19 +02:00
|
|
|
\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}
|
2013-10-23 07:00:11 +02:00
|
|
|
\usepackage{makeidx} % for automatically generation of an index
|
|
|
|
\usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
|
2013-10-25 00:01:22 +02:00
|
|
|
\usepackage[xindy,toc]{glossaries} % for symbol table, has to be after hyperref
|
2013-10-22 12:05:19 +02:00
|
|
|
\usepackage{enumerate}
|
|
|
|
\usepackage{braket} % needed for \Set
|
|
|
|
\usepackage{csquotes}
|
|
|
|
\usepackage{parskip}
|
2013-10-23 07:26:10 +02:00
|
|
|
\usepackage{pst-solides3d}
|
2013-10-22 20:14:28 +02:00
|
|
|
\usepackage{tikz}
|
2013-10-23 07:26:10 +02:00
|
|
|
\usetikzlibrary{3d,calc,intersections,er,arrows,positioning}
|
2013-10-22 20:14:28 +02:00
|
|
|
\newcommand{\inputTikZ}[2]{%
|
|
|
|
\scalebox{#1}{\input{#2}}
|
|
|
|
}
|
2013-10-22 12:05:19 +02:00
|
|
|
|
|
|
|
\usepackage{shortcuts}
|
|
|
|
|
2013-10-25 00:01:22 +02:00
|
|
|
% Setze den richtigen Namen für das Glossar
|
|
|
|
\newcommand{\glossarName}{Symbolvereichnis}
|
|
|
|
|
2013-10-22 12:05:19 +02:00
|
|
|
\author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}}
|
|
|
|
\title{Geometrie und Topologie}
|
2013-10-25 00:01:22 +02:00
|
|
|
\makeglossaries
|
2013-10-22 12:05:19 +02:00
|
|
|
\makeindex
|
|
|
|
|
|
|
|
\hypersetup{
|
|
|
|
pdfauthor = {Siehe GitHub},
|
|
|
|
pdfkeywords = {Geometrie, Topologie},
|
|
|
|
pdftitle = {Geometrie und Topologie}
|
2013-10-23 07:26:10 +02:00
|
|
|
}
|
2013-10-22 12:05:19 +02:00
|
|
|
|
2013-10-23 07:00:11 +02:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% make the index link to the correct part of the page %
|
|
|
|
% http://tex.stackexchange.com/q/74493/5645 %
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\newcounter{indexanchor}
|
|
|
|
\newcommand*{\xindex}[1]{%
|
|
|
|
\stepcounter{indexanchor}% make anchor unique
|
|
|
|
\def\theindexterm{#1}%
|
|
|
|
\edef\doindexentry{\noexpand\index
|
|
|
|
{\expandonce\theindexterm|indexanchor{index-\theindexanchor}}}%
|
|
|
|
\raisebox{\baselineskip}{\hypertarget{index-\theindexanchor}%
|
|
|
|
{\doindexentry}}%
|
|
|
|
}
|
|
|
|
\newcommand*{\indexanchor}[2]{\hyperlink{#1}{#2}}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
\makeindex
|
|
|
|
|
2013-10-23 07:42:20 +02:00
|
|
|
\usepackage{microtype}
|
|
|
|
|
2013-10-22 12:05:19 +02:00
|
|
|
\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
|
2013-10-25 00:01:22 +02:00
|
|
|
\input{Symbolverzeichnis}
|
2013-10-22 12:05:19 +02:00
|
|
|
|
|
|
|
\renewcommand{\indexname}{Stichwortverzeichnis}
|
|
|
|
\addcontentsline{toc}{chapter}{Stichwortverzeichnis}
|
|
|
|
\printindex
|
|
|
|
\end{document}
|