我需要有人幫忙在乳膠中重新建立下表:
關聯: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}