Graphics, Figures & TablesMultirow inbetween columns

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
rajini
Posts: 64
Joined: Mon Mar 22, 2010 2:27 pm

Multirow inbetween columns

Post by rajini »

Hello all,

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
new.JPG (26.94 KiB) Viewed 2116 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Multirow inbetween columns

Post by gmedina »

Hi,

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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
rajini
Posts: 64
Joined: Mon Mar 22, 2010 2:27 pm

Re: Multirow inbetween columns

Post by rajini »

Hi gemedia,
this is what i want. Thanks.
multirow inside multirow!
rajini
Post Reply