How to combine cells of one column in LyX?

I have 3 sub-figures that I want to arrange so that 1 is on the left and 2 is on the right (one above the other):

Figure 1 | Figure 2

Figure 1 | Figure 3

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

I thought I should use a 2x2 table to arrange them, but I cannot find a way to combine two cells in one column into one cell to add the number 1 there.

How can I combine two cells in one column?

+3
source share
2 answers

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

\begin{tabular}{l|l}
\multirow{2}{*}{<figure 1>} & <figure 2> \\
& <figure 3>
\end{tabular}
+2
source

Latex Lyx, "Insert TeX code", ALT-L .

:

  • \usepackage{multirow} ( "/..." );
  • b0lt.

multirow Texlive, .

+1

Source: https://habr.com/ru/post/1746136/


All Articles