我需要有人帮助在乳胶中重新创建下表:
关联: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}