Kenneth French の Web サイトからシンプルなテーブルを再現する (説明にリンクがあります)

Kenneth French の Web サイトからシンプルなテーブルを再現する (説明にリンクがあります)

次の表を LaTeX で再作成するのに誰かの助けが必要です: http://mba.tuck.dartmouth.edu/pages/faculty/ken.french/data_library/images/median_me.gif

リンク: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}

ここに画像の説明を入力してください

関連情報