如何实现独立的2列

如何实现独立的2列

我想要一些看起来像这样的东西: enter image description here

但我不确定如何获取它,因为左列应该有 2 行,右列应该有 4 行。所以我希望两者是独立的。

答案1

\documentclass[border=3mm]{standalone}
\usepackage{array,xcolor,multirow}
\colorlet{darkred}{red!80!black}
\begin{document}
\begin{tabular}{rl}
    \multirow{2}{*}{\huge\bf Hello} & {\color{darkred}\bf text\ldots}\\
                                    & {\color{darkred}\bf text\ldots}\\
    \multirow{2}{*}{\huge\bf World!!} & {\color{darkred}\bf text\ldots}\\
                                      & {\color{darkred}\bf text\ldots}
\end{tabular}
\end{document}

enter image description here

相关内容