단락 열이 있는 표의 간격 설정

단락 열이 있는 표의 간격 설정

단락 열로 인해 행에 여러 줄이 있을 때 표의 간격을 설정하는 데 어려움을 겪습니다. 이미 행 사이의 거리를 줄였지만 이는 한 행 내의 간격에 관한 것입니다. 다음은 내 코드의 짧은 형식입니다.

\documentclass{scrartcl}
\usepackage{tabularx}
\usepackage{booktabs}
\begin{document}


\begin{table}[htbp]\centering
\renewcommand{\arraystretch}{0.5}
\caption{Summary Statistics: Continuous Variables   \label{sumstat}}
{ 
\begin{tabular}{l p{7cm} c c c c  }
\cline{1-2}
\toprule
 &         &          \multicolumn{2}{c}{Within}&  \multicolumn{2}{c}{Between}\\  \cline{3-4} \cline{5-6} \noalign{\smallskip}
Variable    &  Description   &          Mean&  SD&          Mean&  SD\\
\midrule
\multicolumn{6}{l}{\textit{Dependent Variables}} \\
TreatWin       & 1 if household installed new windows in the last year and subsequently, 0 otherwise   &       x&                 x &  x&                 x\\
envir       &       concerned about the environmental protection, categorical from 0 (not at all) to 2 (very)&       x&                 x &  x&                 x\\
\bottomrule

\end{tabular}
}
\end{table}
\end{document}    

테이블

도와주셔서 감사합니다!

최고야, 파비안

관련 정보