라텍스로 다음 테이블을 다시 만드는 데 누군가의 도움이 필요합니다.
링크:http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/six_portfolios.html
내가 가진 것은 다음과 같습니다.
\begin{tabular}{ l l| l }
& Small Value & Big Value \\ \hline
& Small Neutral & Big Neutral \\ \hline
& Small Growth & Big Growth \\
\end{tabular}
도움이 필요하세요?
감사합니다, 마틴
답변1
거의 다 왔습니다. 누락된 텍스트는 깊이와 높이를 \raisebox
사용 하여 추가할 수 있습니다.0pt
\documentclass{article}
\begin{document}
\noindent
{
\renewcommand\arraystretch{1.3}
\begin{tabular}{ l l| l }
& \multicolumn{2}{c}{Median ME}
\\
\raisebox{-0.6\normalbaselineskip}[0pt][0pt]{70th BE/ME percentile} &
Small Value & Big Value
\\ \cline{2-3}
\raisebox{-0.6\normalbaselineskip}[0pt][0pt]{30th BE/ME percentile} &
Small Neutral & Big Neutral
\\ \cline{2-3}
& Small Growth & Big Growth
\end{tabular}
}
\end{document}
수직적 규칙이 없는 제안은 다음과 같습니다. (제 생각에는 불필요합니다.) 다음을 사용합니다 booktabs
.
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\noindent
\begin{tabular}{ l l l }
& \multicolumn{2}{c}{Median ME}
\\
\raisebox{-0.6\normalbaselineskip}[0pt][0pt]{70th BE/ME percentile} &
Small Value & Big Value
\\ \cmidrule{2-3}
\raisebox{-0.6\normalbaselineskip}[0pt][0pt]{30th BE/ME percentile} &
Small Neutral & Big Neutral
\\ \cmidrule{2-3}
& Small Growth & Big Growth
\end{tabular}
\end{document}