multirow - francois-rozet/sleek-template GitHub Wiki
Features of the multirow
package.
Command | Description | Arguments |
---|---|---|
\multirow |
Concatenates boxes vertically | {n}{width}{content} |
Where
-
n
is the number of boxes to concatenate. -
width
is the width of the created box. -
content
is the content of the created box.
\begin{tabular}{|l|c|r|}
\hline
\multirow{3}{2cm}{a} & b & c \\ \cline{2-3}
& de & fg \\ \cline{2-3}
& hij & klm \\ \hline
nopq & rstuv & wxyz \\ \hline
\end{tabular}
\cline{a-b}
draws an horizontal line from the box numbera
to the box numberb
.