ich benutze erst seit kurzem Latex und habe mir ein Layout meiner Vorstellung nach Zusammengestellt. Dabei bin ich auf das packet hyperref gestoßen. Ich find es super, da meine Quellen etc. eingefärbt werden können und ein direkter "Klick-Link" zum Abschnitt erfolgen kann. Doch jetzt habe ich irgendwie Probleme damit bei den Lesezeichen. Mein Inhaltsverzeichnis wird angezeigt wie gewünscht, aber die Lesezeichen bei Adobe sind total durcheinander. Im Minimalbeispiel sind Tabellen und Symbolverzeichnis im Abbildungsverzeichnis, was meiner Meinung nicht sein sollte. Im Hauptdokument sind sogar alle Unterkapitel im Abbildungsverzeichnis und ich finde das Problem nicht.
Weiß da jemand weiter?
\documentclass[fontsize=12pt, paper=a4, headinclude, twoside=false, parskip=half+, pagesize=auto, numbers=noenddot, toc=listofnumbered, toc=bibliographynumbered, listof=entryprefix]{scrreprt} \usepackage[T1]{fontenc} \usepackage[ngerman]{babel} \usepackage{bibgerm} \usepackage[utf8]{inputenc} \usepackage[automark]{scrpage2} \pagestyle{scrheadings} \renewcommand*{\chapterpagestyle}{scrheadings} \setheadsepline{.4pt} \renewcommand*{\chaptermarkformat}{} \setkomafont{chapter}{\huge\rmfamily} \setkomafont{section}{\Large\rmfamily} \setkomafont{subsection}{\large\rmfamily} \setkomafont{subsubsection}{\small\rmfamily} \setkomafont{chapterentry}{\large\rmfamily} \setkomafont{captionlabel}{\small\bfseries} \setkomafont{caption}{\small} \usepackage{color} \usepackage[breaklinks, colorlinks=true,linkcolor=black, citecolor=blue, filecolor=black, urlcolor=black]{hyperref} \pagenumbering{Roman} \begin{document} \chapter*{Vorwort} \cohead{Vorwort} \renewcommand\thechapter{\Roman{chapter}} \cohead{\headmark} \tableofcontents \listoffigures \listoftables \chapter{Symbolverzeichnis} \renewcommand\thechapter{\arabic{chapter}} \setcounter{chapter}{0} \chapter{Testkapitel} \pagenumbering{arabic} \section{Testabschnitt} \chapter{Testkapitel2} \section{Testabschnitt2} \chapter{Fazit} \clearpage \end{document}