1

I want to have something that looks like this: enter image description here

But I'm not sure how to get it as the left column should have 2 rows and the right 4 rows. So I want the two to be independent.

CarLaTeX
  • 62,716
Jason
  • 13
  • 2

1 Answers1

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

Display Name
  • 46,933