multirow:如何处理文本高于行高的情况

multirow:如何处理文本高于行高的情况
\documentclass[a4paper]{article}
\usepackage[landscape,hmargin=2cm,top=1.5cm,bottom=1.6cm,headsep=1mm,headheight=3cm]{geometry} 
\usepackage{multirow}
\usepackage{tabularx}
\begin{document}
    \begin{tabularx}{1\textwidth}{|c|c|c|c|c|c|c|X<{\centering}|c|c|c|c|c|p{35mm}<{\centering}|}
    \hline
            &&&&&&&&&100\%&continueous&&worker& \\
            \cline{10-13}
            &&&&\multirow{-2}*{suface quality}&&&\multirow{-2}{60mm}{The financials crashed and burned during the 2008 meltdown but have since been in recovery mode with the rest of the market.  This article will explore the risks and rewards associated with these Financial ETFs to identify which have been the best performers.}&\multirow{-2}*{check}&\multicolumn{2}{c|}{SPDR SP Bank ETF}&&worker&\multirow{-2}{30mm}{The Best Financial ETFs} \\
            \hline
    \end{tabularx}

\end{document}

布局很糟糕

如上代码所示,合并后的行为2行,而单元格中的文本多于2行,单元格中的文本高度大于行高,如何纠正?有谁能帮助我?谢谢。

答案1

像这样?

% arara: pdflatex

\documentclass[a4paper]{article}
\usepackage[landscape,hmargin=2cm,top=1.5cm,bottom=1.6cm,headsep=1mm,headheight=3cm]{geometry} 
\usepackage{multirow}
\usepackage{tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\usepackage{microtype}
\usepackage{siunitx}

\begin{document}
\noindent
\begin{tabularx}{\textwidth}{|*{7}{c|}C|*{5}{c|}p{35mm}|}
    \hline
    &&&&\multirow{5}*{suface quality}&&&\multirow{5}{\hsize}{The financials crashed and burned during the 2008 meltdown but have since been in recovery mode with the rest of the market. This article will explore the risks and rewards associated with these Financial ETFs to identify which have been the best performers.}&\multirow{5}*{check}&\SI{100}{\percent}&continueous&&worker& \multirow{5}{\hsize}{The Best Financial ETFs} \\\cline{10-13}
    &&&&&&&&&\multicolumn{2}{c|}{\multirow{3}*{SPDR SP Bank ETF}}&&\multirow{3}*{worker}& \\
    &&&&&&&&&\multicolumn{2}{c|}{}&&&\\
    &&&&&&&&&\multicolumn{2}{c|}{}&&&\\
    &&&&&&&&&\multicolumn{2}{c|}{}&&&\\
    \hline
\end{tabularx}  
\end{document}

在此处输入图片描述

相关内容