\documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook} \usepackage{etoolbox} \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{makeidx} % for automatically generation of an index \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx \usepackage[xindy,toc]{glossaries} % for symbol table, has to be after hyperref \usepackage{enumerate} \usepackage{braket} % needed for \Set \usepackage{csquotes} \usepackage{subfigure} \usepackage{parskip} \usepackage{pst-solides3d} \usepackage[colorinlistoftodos]{todonotes} \usepackage{pgfplots} \usepackage{tikz} \usepackage{tikz-3dplot} \usepackage{tkz-fct} \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc} \newcommand{\inputTikZ}[2]{% \scalebox{#1}{\input{#2}} } \usepackage{shortcuts} % Setze den richtigen Namen für das Glossar \newcommand{\glossarName}{Symbolvereichnis} \author{Siehe \href{https://github.com/MartinThoma/LaTeX-examples/tree/master/documents}{GitHub}} \title{Geometrie und Topologie} \makeglossaries \makeindex \hypersetup{ pdfauthor = {Siehe GitHub}, pdfkeywords = {Geometrie, Topologie}, pdftitle = {Geometrie und Topologie} } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % 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 \usepackage{microtype} \begin{document} \pagenumbering{roman} \setcounter{page}{1} \maketitle \input{Vorwort} \renewcommand{\thechapter}{\Roman{chapter}} \addcontentsline{toc}{chapter}{Inhaltsverzeichnis} \tableofcontents \pagenumbering{arabic} \setcounter{page}{1} \input{Kapitel1} \appendix \input{Symbolverzeichnis} \renewcommand{\indexname}{Stichwortverzeichnis} \addcontentsline{toc}{chapter}{Stichwortverzeichnis} \printindex \end{document}