I want to put the "iii" in the middle of the cell. So I turn to the \multicolumn to modify a single cell.
My initial code is
\documentclass{article}
\begin{document}
\begin{tabular}{|r | l | p{5cm} }
\hline
aaa & \multicolumn{2}{c|}{bbb ccc} \\
\cline{1-1}
ddd & \multicolumn{2}{c|}{eee f\mbox{}f\mbox{}f\mbox{} }\\
\hline
ggg & hhh & \multicolumn{1}{c|}{iii} \\
\hline
\end{tabular}
\end{document}
But the column 2&3 become narrow. So I change line 4 and 6 and the whole code went into:
\documentclass{article}
\begin{document}
\begin{tabular}{|r | l | p{5cm} }
\hline
aaa & \multicolumn{2}{c|}{bbb ccc} \\
\cline{1-1}
ddd & \multicolumn{2}{c|}{eee f\mbox{}f\mbox{}f\mbox{} }\\
\hline
ggg & hhh & \multicolumn{1}{p(5cm)}{iii} \\
\hline
\end{tabular}
\end{document}
But the whole table becomes narrow. What should I do to change such situation?
