Here is a simple table.
I want to merge 4 cells. I want to combine the three "this" cells area in this table.
I thought I have to use multirow and multicolum at same time.
However, I could not find how to use it.
If possible, could you post the modified LaTeX source code?
My LaTeX code:
\documentclass{article}
\usepackage{multirow}% http://ctan.org/pkg/multirow
\usepackage{hhline}% http://ctan.org/pkg/hhline
\begin{document}
\begin{table}[ph]
\begin{center}
\begin{tabular}{c|c|c|c|c}
\hline
\multirow{2}{*}{Raaa (k)} & \multicolumn{4}{c}{C ()} \\
\hhline{~----}
& 3.3 & 2.5 & 1 & 0.5 \\
\hline
\multirow{2}{*}{Raaa (k)} & \multirow{2}{*}{this} & this & 0.5 & 0.6\\
\hhline{~~~--} & & this & 0.7 & 1.2 \\
\hline
\end{tabular}
\caption{R, C ripple size}
\label{T:peak}
\end{center}
\end{table}
\end{document}




multirowandhhlinein order to solve your problem. That's just unnecessary work. Also, it'd be nice if you added a picture to this question, now as you have some reputation points and the new user restrictions have been removed from your account. – doncherry Nov 17 '11 at 13:42