wieder so was ... ich hätte gerne eine Grafik und eine Tabelle untereinander, mit nur einem Caption. Das klappt soweit. Was nicht klappt sind die labels der beiden ... wie bekomme ich die hin!?
Mini Beispiel
\documentclass{scrbook} \usepackage[ %%% Extension options ,backref=page % Adds backlink text to the end of each item in the % bibliography, as a list of section numbers. % (section, slide, page, none) ,pagebackref=false % Adds backlink text to the end of each item in the % bibliography, as a list of page numbers. ,hyperindex=true % Makes the page numbers of index entries into % hyperlinks. ,hyperfootnotes=false % Makes the footnote marks into hyperlinks to the % footnote text (must be false if footmisc is loaded). ]{hyperref} \usepackage[ automark, footsepline, headsepline, ]{scrpage2} \usepackage{caption}[2007/09/01] % benötigt v3.1 \DeclareCaptionLabelFormat{andtable}{#1~#2 and \tablename~\thetable} \usepackage{here} \begin{document} \begin{figure}[H] \captionsetup[subfloat]{labelformat=empty} \centering \begin{addmargin}{-0.8cm} \input{./chapter/evaluation/graphx/boxplot_models} \end{addmargin} \label{fig:boxplot_modelerr} \input{./chapter/evaluation/eval_tab} \label{tab:modelerr_stats} \captionlistentry[table]{Statistical parameters} \captionsetup{labelformat=andtable} \caption{Statistical evaluation for the model error} \end{figure} \end{document}
Grüße