Graphics, Figures & Tables ⇒ How to put caption beside subfigures?
How to put caption beside subfigures?
Although there are many posts about both issues (subfigures/minipages and sidecap) I still can't figure out how to create an environment in lyx that looks like in the picture I added for illustration.
Can someone help me with this?
- Attachments
-
- example.jpg (6.78 KiB) Viewed 3647 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How to put caption beside subfigures?
I have no idea about how to implement my suggestion in LyX, but here's a possible solution using LaTeX:
Code: Select all
\documentclass{report}
\usepackage{floatrow,subfig,caption}
\floatsetup[figure]{style=plain}
\captionsetup{labelfont=bf}
\begin{document}
\begin{figure}[!ht]
\subfloat[][]{\rule{.42\textwidth}{.4\textheight}}\hfill%
\subfloat[][]{\rule{.42\textwidth}{.4\textheight}}\vspace*{1cm}\par
\subfloat[][]{\rule{.42\textwidth}{.4\textheight}}\hfill%
\parbox[b][.4\textheight]{.42\textwidth}%
{\vskip-\abovecaptionskip\RawCaption{\caption{A test figure with three subfigures and some additional text.}\vfill\label{...}}}
\end{figure}
\end{document}