kakakakakku blog

Weekly Tech Blog: Keep on Learning!

TeXでクロス集計をまとめる時のテンプレート

需要があるのかわからないけど,クロス集計の結果をTeXで書くときのテンプレートを置いておきます.
プリアンブルに「\usepackage{multirow}」を書くのを忘れずに.

\begin{table}[tbp]
  \caption{caption}
  \label{label}
  \begin{center}
    \begin{tabular}{c|l|cccc}\hline\hline
      \multicolumn{2}{c|}{} & \multicolumn{4}{c}{QUESTION2} \\\hline
      \multicolumn{2}{c|}{項目} & item1 & item2 & item3 & item4 \\\hline
      \multirow{8}{*}{\rotatebox[origin=c]{90}{QUESTION1}}
      & \multirow{2}{*}{itemA} & 0 & 0 & 0 & 0 \\
      & & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) \\
      & \multirow{2}{*}{itemB} & 0 & 0 & 0 & 0 \\
      & & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) \\
      & \multirow{2}{*}{itemC} & 0 & 0 & 0 & 0 \\
      & & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) \\
      & \multirow{2}{*}{itemD} & 0 & 0 & 0 & 0 \\
      & & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) & (00.00$\%$) \\\hline
    \end{tabular}
  \end{center}
\end{table}