Good day everyone.
I am following an earlier very nice post and have only two questions about the answer given here,
What is the role the
*of\multirow{2}{*}{}?So one version of the Table is this
But...
But if we have an extended longer column obstruction in the \multirow{2}{$\begin{matrix} 5\\5\\5\\5\\5\\5 \end{matrix}$ }{}
shown like this:
Main question: There is a long column in the \multirow{2} with a six of 5 in a column, how can we fix the Table to make it looks like all the six of 5 are all in a single block without interfering with the neighbored lines? How do we fix this?
Here are my minimal templates:
\begin{document}
\centering\renewcommand\arraystretch{1.2}
\begin{tabular}{c|c|c}
\hline
Topic 1 & \multicolumn{2}{c}{Topic 2}\\
\hline
33333 & 44444 & \multirow{2}{*}{55555}\\
\cline{1-2}
aaaaa & bbbbb\\
\hline
aaaaa & \multicolumn{2}{c}{ddddd}
\\
\hline
\end{tabular}
\centering\renewcommand\arraystretch{1.2}
\begin{tabular}{c|c|c}
\hline
Topic 1 & \multicolumn{2}{c}{Topic 2}\\
\hline
33333 & 44444 & \multirow{2}{*}{$\begin{matrix} 5\\5\\5\\5\\5\\5 \end{matrix}$ }\\
\cline{1-2}
aaaaa & bbbbb\\
\hline
aaaaa & \multicolumn{2}{c}{ddddd}
\\
\hline
\end{tabular}
\end{document}



tabularenvironment. First, since the column vector of fives contains 6 rows, encasing it in a\multirow{2}{*}{...}directive looks like a mistake. Should it be\multirow{6}{*}{...}? Second, the statement\multicolumn{2}{c}{ddddd}necessarily conflicts with any material that might be in the third column of that row. (Change the directive to\multicolumn{2}{c}{dddddddd}to verify this claim.) Without knowing what you're trying to achieve, it's not possible to give targeted advice. – Mico May 02 '17 at 04:59