I want have three subfigures in a special order. One on the right, two on the left. Therefor I found a snippet here on StackExchange. Alone the snippet works fine, you can check this by comment out the first figure-enviroment.
The problem is, that I have a lot of subfloats in my document and the packages subfig and subcaption are incompatible.
Is there a way to use normal subfloats and also get the 3-subfigure-example running?
Best, TomBoo!
minimal example:
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{caption,subcaption}
\usepackage{subfig}
\begin{document}
\begin{figure}[htb]
\centering
\subfloat[test figure one \label{fig:1:test1}] {\includegraphics[width=0.30\textwidth]{image1}}
\qquad %
\subfloat[test figure two \label{fig:1:test2}] {\includegraphics[width=0.30\textwidth]{image1}}
\caption{test figures}
\label{fig:1:tests}
\end{figure}
\begin{figure}
\begin{minipage}[c][11cm][t]{.5\textwidth}
\vspace*{\fill}
\centering
\includegraphics[width=5cm,height=10cm]{image1}
\subcaption{test figure one}
\label{fig:2:test1}
\end{minipage}%
\begin{minipage}[c][11cm][t]{.5\textwidth}
\vspace*{\fill}
\centering
\includegraphics[width=5cm,height=4.5cm]{image1}
\subcaption{test figure two}
\label{fig:2:test2}\par\vfill
\includegraphics[width=5cm,height=4.5cm]{image1}
\subcaption{test figure three}
\label{fig:3:test3}
\end{minipage}
\caption{another test figures}
\label{fig:2:tests}
\end{figure}
\end{document}

subfigbased solution to the other question because it's better not having information scattered through different questions. If that new solution is good for you, please let us know so we can close this one as duplicate. Don't worry about this: this was indeed a good question. – egreg Aug 06 '13 at 16:54