Abbildungsverzeichnis nach Kapiteln in klassischen Dissertationen

Abbildungsverzeichnis nach Kapiteln in klassischen Dissertationen

Ich schreibe meine Abschlussarbeit mit klassischer Thesis. Ist es möglich, den Titel des Kapitels anzugeben, aber nur, wenn darin Abbildungen zum Lof vorhanden sind?

Die Verwendung von listof = chapterentry in der Option KOMA schließt auch Kapitel ohne Abbildungen ein, und diese würde ich vermeiden.

Danke schön!!

MWE

\documentclass[10pt, a4paper, twoside, openright, titlepage, fleqn, headinclude, footinclude, BCOR5mm, numbers=noenddot, cleardoublepage=empty, 
listof = withchapterentry]{scrbook}
%classic thesis template
\usepackage[eulerchapternumbers, eulermath, pdfspacing, listings, floatperchapter,parts]{classicthesis}
\begin{document}
\listoffigures
\chapter{Introduction with no Figures}

\chapter{Test Chapter with Figures}
\begin{figure}
\caption{caption text}
\end{figure}
\begin{figure}
\caption{caption text}
\end{figure}

\chapter{Test Chapter with no Figures}

\chapter{Another Test Chapter with Figures}
\begin{figure}
\caption{caption text}
\end{figure}

\end{document}

Wie Sie im Bild sehen können, sind Einleitung und Kapitel 1 ebenfalls aufgeführt, enthalten aber keine Abbildungen. Ich würde es vermeiden, Kapitel ohne Abbildungen aufzulisten.

Bildbeschreibung hier eingeben

Antwort1

tof

\documentclass[10pt, a4paper, twoside, openright, titlepage, fleqn, headinclude, footinclude, BCOR5mm, numbers=noenddot, cleardoublepage=emptyast]{scrbook}
%classic thesis template
\usepackage[eulerchapternumbers, eulermath, pdfspacing, listings, floatperchapter,parts]{classicthesis}

\makeatletter
\newcommand{\chapterwithfigures}{\addxcontentsline{lof}{chapteratlist}[{\thechapter}]{\scr@ds@tocentry}}%
\makeatother

\begin{document}
\listoffigures
\chapter{Introduction with no Figures}

\chapter{Test Chapter with Figures}
\chapterwithfigures
\begin{figure}
\caption{caption text}
\end{figure}
\begin{figure}
\caption{caption text}
\end{figure}

\chapter{Test Chapter with no Figures}

\chapter{Another Test Chapter with Figures}
\chapterwithfigures
\begin{figure}
\caption{caption text}
\end{figure}

\end{document}

verwandte Informationen