Grafik über zwei Seiten taucht 2x in List of Figures auf

Inhalt, Abbildungen, Tabellen, Quellcodes und andere Verzeichnisse


shardur
Forum-Anfänger
Forum-Anfänger
Beiträge: 39
Registriert: Do 30. Okt 2014, 16:50

Grafik über zwei Seiten taucht 2x in List of Figures auf

Beitrag von shardur »

Hallo zusammen,

ich habe folgendes Problem: Ich habe ein Grafik, die aufgrund subfigures über zwei Seiten geht - ich habe dies mittels ContinuedFloat gemacht. Das Problem ist, dass diese Grafik 2x in der List of Figures auftaucht - für jede Seite eben einmal. Wie kann ich dies denn so hinbiegen, dass die Grafik nur einmal im Verzeichnis aufgeführt wird, aber dann halt eben bei der Seitenzahl im Verzeichnis z.B. 2-3 steht?

Hier ein Minimalbsp:
\documentclass[a4paper,12pt,oneside,pointlessnumbers,headsepline,chapteratlists=0pt,listof=flat,captions=figureheading]{scrbook}
\KOMAoptions{DIV=last,BCOR=1cm}

\pagestyle{headings}
\usepackage[english]{babel}
\usepackage{mathptmx}
\usepackage[scaled]{helvet}
\usepackage{courier}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

% Figures
\usepackage{graphicx}
\usepackage[outdir=./]{epstopdf}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage[flushleft]{threeparttable} 
\usepackage[skip=0pt]{subcaption}
\usepackage[skip=8pt]{caption}


\begin{document}
% FRONTMATTER
\frontmatter
\pagenumbering{Roman}

\label{List of Figures}
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\clearpage

\mainmatter

\chapter{Kapitel 1}
\section{Bla}

\begin{figure}[h!]
\centering 
\caption{Titel der Grafik}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\end{figure}
\begin{figure}[h!]\ContinuedFloat
\caption{Titel der Grafik} 
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}
\subcaptionbox{Grafik1 \label{Grafik1}}
{\includegraphics[width=74.5mm,height=60mm,keepaspectratio]{Grafik1}}

\label{fig:Grafik}
\end{figure}

\end{document}

Vielen Dank schon einmal im Voraus für die Hilfe!

Gast

Beitrag von Gast »

Nur ein Eintrag geht: Entweder nur einmal \caption verwenden oder einmal mit leerem optionalen Argument und einmal ohne optionalem Argument oder mit nicht leerem, optionalem Argument. Siehe dazu die [d]caption[/d]-Anleitung.

Ein Eintrag mit Seitenbereichen statt einzelner Seitenzahl geht so aber noch nicht. Dazu muss man sehr viel mehr Aufwand betreiben. Für das Inhaltsverzeichnis hat Ijon Tichy das einmal auf TeXwelt erklärt.

Vermutlich ist das nicht die Antwort, die Du Dir erhofft hast, aber ich wollte zumindest darauf hinweisen.

Antworten