I have 3 subfigures I want to arrange so that 1 will be in the left and 2 will be in the right (one above the other):

Figure 1 | Figure 2

Figure 1 | Figure 3

Figure 1 should appear only once of course - across the entire column.

I thought I should use 2x2 table to arrange them, but I can't find a way to merge the two cells in the same column to one cell in order to put figure 1 there.

How can I merge the two cells in the same column?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You want to use the multirow package. Add the package, and use something like this:

\begin{tabular}{l|l}
\multirow{2}{*}{<figure 1>} & <figure 2> \\
& <figure 3>
\end{tabular}
link|improve this answer
Is there a way to do it in directly in LyX? Without editing the LaTeX? – brickner May 19 '10 at 8:04
1  
According to the LyX wiki (wiki.lyx.org/LyX/Tables#toc3), LyX can do multicolumn formatting, but not multirow, so you're pretty much stuck just working with the LaTeX source. – Joshua Gao May 19 '10 at 9:23
+1, but "pretty much stuck just working with the LaTeX source" suggests abandoning Lyx: you can enter Tex code into Lyx per my answer stackoverflow.com/questions/2863704/… – Charles Stewart May 24 '10 at 12:23
feedback

You can enter Latex code snippets directly in Lyx using "Insert TeX code", bound to ALT-L by default.

So:

  1. Add \usepackage{multirow} to your preamble (using the Document/Settings... menu item);
  2. Insert the Latex code b0lt recommended.

multirow is part of the basic Texlive install, so you shouldn't need to import it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.