first time I go public with problem, hopefully my MWE is sufficient:
Code: Select all
\documentclass[a4paper,11pt,%titlepage,
oneside,
headsepline,headings=small
]{scrreprt}
\usepackage[pdftex]{graphicx}
\usepackage{%natbib,
amsmath, epstopdf, hyperref,
xspace, array,delarray,tabularx, calc, amssymb, %pifont,
rotating, csquotes, %nicefrac,
%epsfig, %a4wide,
%makeidx,%times,
%floatfig,
subfig, caption,
helvet, pdflscape, threeparttable}
\setkomafont{pagehead}{\footnotesize\scshape}
\setcapindent{0.03\textwidth}
\setcapwidth[l]{0.96\textwidth}
\begin{document}
\begin{figure}
\centering
\subfloat[captionfig1]{\includegraphics[width=0.25\textwidth]{figure1}}
\subfloat[captionfig2]{\includegraphics[width=0.25\textwidth]{figure2}}
\subfloat[captionfig3]{\includegraphics[width=0.25\textwidth]{figure3}}
\caption{caption entire figure}
\label{graphC5}
\end{figure}
\end{document}
http://en.wikibooks.org/wiki/LaTeX/Floa ... #Subfloats because it is exactly what I wanted.
The problem now ist that the [captionfig1] of figure 1 is placed beneath subfigure 2, the [captionfig3}] of figure 3 gets pushed towards the right and is placed at the edge of the deocument, outside of the box.
Any ideas?