Hallo zusammen! Folgende Ausgangssituation habe ich: In der Hauptdatei habe ich mit \section und \tableofcontents ein Inhaltsverzeichnis erstellt. Es werden von der Hauptdatei mehrere externe Dateien (.tex) geladen (\input). Wenn ich in der externen Dateien mit \tableofcontents ein weiteres Inhaltsverzeichnis erstellen möchte, wird dies in der Hauptdatei eingefügt. Wie kann ich in den Dateien seperat je ein Inhaltsverzeichnis erstellen? \documentclass[a4paper]{article} ... % renew \contentsline for toc to include hypertarget \let\oldcontentsline\contentsline% \renewcommand\contentsline[4]{% \hypertarget{toc#4}{}% \oldcontentsline{#1}{#2}{#3}{#4}} % renew \section to link to the toc \titleformat{\section} {\normalfont\Large\bf} {{\thesection} \hyperlink{tocsection.\thesection}{#1}} {1pc} {} % renew \subsection to link to the toc \titleformat{\subsection} {\normalfont\bf} {{\thesection} \hyperlink{tocsubsection.\thesubsection}{#1}} {1pc} {} % renew \subsubsection to link to the toc \titleformat{\subsubsection} {\normalfont\bf} {{\thesection} \hyperlink{tocsubsubsection.\thesubsubsection}{#1}} {1pc} {} \begin{document} \tableofcontents \end{document} Danke im Voraus! |