Ich brauche die Hilfe von jemandem beim Neuerstellen der folgenden Tabelle in Latex:
Verknüpfung:http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/Data_Library/six_portfolios.html
Das habe ich:
\begin{tabular}{ l l| l }
& Small Value & Big Value \\ \hline
& Small Neutral & Big Neutral \\ \hline
& Small Growth & Big Growth \\
\end{tabular}
Irgendeine Hilfe?
Freundliche Grüße, Martin
Antwort1
Sie haben es fast geschafft. Die fehlenden Texte können mithilfe \raisebox
von 0pt
Tiefe und Höhe hinzugefügt werden:
\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}
Hier ist ein Vorschlag ohne vertikale Linie (meiner Meinung nach ist sie überflüssig) und mit 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}