I have a table and I wish to use a \multirow in a \multicolumn but I can't seem to get it to work. In the example below I wish the property cell to span the first two rows. Can anyone help?
Code: Select all
\documentclass[11pt]{article}
\title{\textbf{Example Table}}
\author{james1986}
\date{}
\begin{document}
\section{Before you start}
\begin{tabular}{|l|c|c|}
\hline
Property & \multicolumn{2}{|c|}{Temperature} \\
\hline
&Room Temperature & 1200C\\
\hline
\multicolumn{3}{|l|}{CVI SiC/Si-B-C}\\
\hline
Fibre Type & Hi-Nicalon fibres & Hi-Nicalon fibres\\
Reinforcement & Plain Weave & Plain Weave\\
Density & 2.3 & \\
Porosity & 13 & \\
Tensile Strength & 315 &\\
Strain to failure (\%) &0.5&\\
Youngs Modulus (GPa) & 220 &\\
\hline
\multicolumn{3}{|l|}{Interlaminar Shear} \\
\hline
Strength (MPa) & 31 & 23\\
Flextural Strength (MPa) & 699 & 620\\
\hline
\multicolumn{3}{|l|}{2D CVI-enhanced SiC/SiC Composite}\\
\hline
Fibre type & Hi Nicalon & Hi Nicalon\\
Fibre Content (\%) & 35 & 35\\
Reinforcement & 0/90 five harness satin &0/90 five harness satin\\
Density & 2.2 & 2.2\\
Porosity (\%) & 10 & 10\\
Tensile Strength (MPa) & 324 & 259\\
Strain to Failure (\%) & 0.74 & 0.50\\
Youngs Modulus (GPa) & 207 & 212\\
\hline
\end{tabular}
\end{document}