LaTeX 表のヘルプ

LaTeX 表のヘルプ

この複雑な表の形式の LaTeX コードを持っている、または導出できる人はいますか? ありがとうございます

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

\documentclass{article}

\usepackage{multirow}

\begin{document}

\begin{tabular}{|cc||c|c|c|}
\hline
\multicolumn{2}{|c||}{\multirow{2}{*}{Word}} & \multicolumn{3}{c|}{Word}\\
\cline{3-5}
& & 1 & 2 & 3\\
\hline
\multirow{5}{*}{Word} & \multicolumn{1}{|c||}{1} & & &\\
\cline{2-5}
& \multicolumn{1}{|c||}{2} & & &\\
\cline{2-5}
& \multicolumn{1}{|c||}{3} & & &\\
\cline{2-5}
& \multicolumn{1}{|c||}{4} & & &\\
\cline{2-5}
& \multicolumn{1}{|c||}{5} & & &\\
\hline
\end{tabular}
\end{document}

答え1

このテンプレートは簡単に継続できるはずです。

\begin{document}

\begin{tabular}{|c|l|*{15}{c|}}
\hline
&&\multicolumn{15}{c|}{c}\\
\cline{3-17}
a&\multicolumn{1}{c|}{b}&\multicolumn{3}{c|}{d}&\multicolumn{3}{c|}{e}&
\multicolumn{3}{c|}{f}&\multicolumn{3}{c|}{g}&\multicolumn{3}{c|}{h}\\
\cline{3-17}
&&i&j&k&l&m&n&o&p&q&r&s&t&u&v&w\\
\hline
&3&28&29&30&  &&& &&& &&& &&\\
&4&31&32&33&  &&& &&& &&& &&\\
x&5&34&35&36&   &&& &&& &&& &&\\
&6&37&38&39&  &&& &&& &&& &&\\
&7&40&41&42&  &&& &&& &&& &&\\
\hline
\end{tabular}


\end{document}

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

関連情報