2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/GeoTopo/GeoTopo.tex

89 lines
2.8 KiB
TeX
Raw Normal View History

2013-10-22 12:05:19 +02:00
\documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
\usepackage{etoolbox}
2013-11-04 12:32:31 +01:00
\usepackage{amsmath,amssymb}% math symbols / fonts
2013-11-09 01:28:15 +01:00
\usepackage{mathtools} % \xRightarrow
\usepackage{nicefrac} % \nicefrac
2013-10-22 12:05:19 +02:00
\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{framed}
\usepackage{marvosym}
2014-01-12 12:32:11 +01:00
\usepackage{makeidx} % for automatically generation of an index
\usepackage{xcolor}
\usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
2014-01-12 12:32:11 +01:00
\usepackage{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
2013-11-04 10:34:19 +01:00
\usepackage{tabto}
2013-11-04 12:32:31 +01:00
\usepackage{braket} % needed for \Set
\usepackage{csquotes} % \enquote{}
\usepackage{subfig} % multiple figures in one
2013-11-04 12:32:31 +01:00
\usepackage{parskip} % nicer paragraphs
2013-11-05 11:11:07 +01:00
\usepackage{xifthen} % \isempty
\usepackage{changepage} % for the adjustwidth environment
2013-10-23 07:26:10 +02:00
\usepackage{pst-solides3d}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{pgfplots}
2013-11-04 10:34:19 +01:00
\pgfplotsset{compat=1.7}
\usepackage[arrow, matrix, curve]{xy}
2013-11-04 12:32:31 +01:00
\usepackage{caption} % get newlines within captions
\usepackage{tikz} % draw
\usepackage{tikz-3dplot} % draw
\usepackage{tkz-fct} % draw
\usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
2013-11-17 21:19:41 +01:00
\usepackage{tqft}
\usepackage{cleveref} % has to be after hyperref, ntheorem, amsthm
2013-11-28 17:28:06 +01:00
\usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
2013-10-22 12:05:19 +02:00
\usepackage{shortcuts}
2013-11-09 01:28:15 +01:00
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]%
{\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
\renewcommand{\sectionmark}[1]%
{\markright{\MakeUppercase{\thesection.\ #1}}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\newcommand{\helv}{%
\fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
\fancyhf{}
\fancyhead[LE,RO]{\helv \thepage}
\fancyhead[LO]{\helv \rightmark}
\fancyhead[RE]{\helv \leftmark}
2013-10-22 12:05:19 +02:00
\makeindex
\hypersetup{
2013-11-06 23:09:12 +01:00
pdfauthor = {Siehe tinyurl.com/GeoTopo},
2013-10-22 12:05:19 +02:00
pdfkeywords = {Geometrie, Topologie},
pdftitle = {Geometrie und Topologie}
2013-10-23 07:26:10 +02:00
}
2013-10-22 12:05:19 +02:00
\makeindex
\usepackage{microtype}
2013-10-22 12:05:19 +02:00
\begin{document}
\pagenumbering{roman}
\setcounter{page}{1}
2014-01-12 12:32:11 +01:00
\input{titlepage}
\input{Vorwort}
2013-10-22 12:05:19 +02:00
\tableofcontents
\pagenumbering{arabic}
\setcounter{page}{1}
2013-10-22 12:05:19 +02:00
\input{Kapitel1}
2013-11-13 16:54:25 +01:00
\input{Kapitel2}
\input{Kapitel3}
2014-01-11 23:27:43 +01:00
\input{Kapitel4}
2013-11-05 11:11:07 +01:00
\input{Loesungen}
2013-10-22 12:05:19 +02:00
\appendix
2013-11-26 23:00:58 +01:00
\input{Bildquellen}
\clearpage
2013-10-25 00:01:22 +02:00
\input{Symbolverzeichnis}
2013-10-27 12:46:08 +01:00
\clearpage
2013-10-22 12:05:19 +02:00
\addcontentsline{toc}{chapter}{Stichwortverzeichnis}
2013-12-17 17:31:48 +01:00
\renewcommand{\indexname}{Stichwortverzeichnis}
2013-10-22 12:05:19 +02:00
\printindex
\end{document}