Adicionando mais itens na coluna de uma tabela

Adicionando mais itens na coluna de uma tabela

Eu tenho os seguintes códigos LaTeX como parte do meu artigo para criar uma tabela para os resultados da minha simulação. Estou achando difícil incluir o seguinte: TY=57,48, GH=37,51, XYZ= 5,01 logo abaixo de n=50000, todos na primeira coluna. Especificamente nesta ordem (disposição vertical):

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

Obrigado!

\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}

Responder1

O truque é \multirow{2}{=}{}com \arraystretch =2.4.

Por outro lado, com as regras do booktabs parecem melhores, imho:

eu

\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}

informação relacionada