Agregar más elementos en la columna de una tabla

Agregar más elementos en la columna de una tabla

Tengo los siguientes códigos LaTeX como parte de mi artículo para crear una tabla para los resultados de mi simulación. Me resulta difícil incluir lo siguiente: TY=57,48, GH=37,51, XYZ= 5,01 justo debajo de n=50000, todo en la primera columna. Concretamente en este orden (disposición vertical):

n=50000
TY=57.48
GH=37.51
XYZ= 5.01

¡Gracias!

\usepackage{placeins}
\usepackage{amsmath,hyperref}
\setlength{\arrayrulewidth}{.3mm}
\setlength{\tabcolsep}{4pt}
\renewcommand{\arraystretch}{1.2}
\usepackage[T1]{fontenc}
\usepackage{subfigure}
\usepackage[top=1.5cm,bottom=2cm,right=2cm,left=1.8cm]{geometry} 
\usepackage{tabularx}
\begin{document}

\begin{table}[!h]
    \begin{center}
    \begin{tabular}{ p{2cm} |c c c c  c c c c}
        \hline
        \hline

        & \emph{True Value}& \emph{Estimate} & \emph{ RMSE } & \emph{Bias  } & \emph{ $\% $Bias  } & \emph{SE   }  &\emph{Coverage} & \emph{ CIL } \\
        \hline
        %-----------------------------------------------------------------------------
            \multirow{2}{*}{$n=50000$ } & $r_1= 0.033 $&  $\hat{r_1}= 0.03339$ & $0.00161$  &$ 0.000060$  & $0.18146$ & $0.00162$ &  $ 0.954$ & $0.00635$\\     
            & $r_2=0.040$   & $\hat{r_2}=0.04012$  & $ 0.00580$ &$0.000116$ & $ 0.29026$ & $0.00580 $ & $0.952$ & $0.02274$ \\
            \cline{1-9}     

        \hline      
    \end{tabular}
    \end{center}
\end{table}

Respuesta1

El truco está \multirow{2}{=}{}en \arraystretch =2.4.

Por otro lado, con las reglas de booktabs se ven mejor, en mi humilde opinión:

mwe

\documentclass{article}
\usepackage{multirow}
\usepackage{amsmath}
\renewcommand{\arraystretch}{2.4}
\usepackage[top=1.5cm,bottom=2cm,right=2cm,left=1.8cm]{geometry} 
\usepackage{booktabs}
\begin{document}
\begin{tabular}{@{}p{2cm}@{\qquad}c c c c c c c c@{}}\toprule
   & \emph{True Value}& \emph{Estimate} & \emph{ RMSE } & \emph{Bias } & \emph{ $\% $Bias } & \emph{SE } &\emph{Coverage} & \emph{ CIL } \\
\cmidrule{2-9}
\multirow{2}{=}{\parbox{2cm}{$n=50000$ $\text{TY}=57.48$ $\text{GH}=37.51$ $\text{XYZ}= 5.01$}} & $r_1= 0.033 $& $\hat{r_1}= 0.03339$ & $0.00161$ &$ 0.000060$ & $0.18146$ & $0.00162$ & $ 0.954$ & $0.00635$\\ 
 & $r_2=0.040$ & $\hat{r_2}=0.04012$ & $ 0.00580$ &$0.000116$ & $ 0.29026$ & $0.00580 $ & $0.952$ & $0.02274$ \\
 \cline{1-9} 
 \hline 
 \end{tabular}
\end{document}

información relacionada