Graphics, Figures & Tables ⇒ Multirow inbetween columns
Multirow inbetween columns
I have some problems in making including multirow option in table.
Please see the attached picture for details. In that the data in first two columns are aligned left and centered in the middle of cell. But the 3rd and fourth column contains two rows and these 2 rows. And finally the last column some times i want to use as \parbox or as some text aligned to each row from 3rd/4th column..
Is there a way to do it? Because i know only how to make multirow when it starts from 1st column.
thanks
- Attachments
-
- new.JPG (26.94 KiB) Viewed 2116 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
Multirow inbetween columns
I don't understand your problem/question. Perhaps something like this will help:
Code: Select all
\documentclass{book}
\usepackage{multirow}
\begin{document}
\noindent\begin{tabular}{|l|l|l|l|l|}
\hline
Exp & Obs & ej & FC & Description\\
\hline
\multirow{2}{*}{10} & \multirow{2}{*}{9.8} & 0.24 & 12.4 & Acoustic\\
&& 0.27 & 13.5 &\\\hline
\end{tabular}
\end{document}
Re: Multirow inbetween columns
this is what i want. Thanks.
multirow inside multirow!
rajini