我正在尝试在乳胶中创建如下表格:
编辑:该表是在 MS Word 上制作的。
我已经尝试过以下
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|c|c|c|}
\hline
\multirow{2}{*}{Some text A} & \multirow{2}{*}{Some text B} & Some text C\\
\cline{3-3}
& & Some text D\\
\hline
\end{tabular}
\end{document}
但发现很难根据我的要求进行修改。
答案1
以下是一种方法:
\documentclass{article}
\usepackage{multirow}
\begin{document}
{\sffamily
\begin{tabular}{|l|l|l|}
\hline
Corpus & Dataset & Accuracy \\
\hline
English & & \\ \cline{2-3}
\multirow{4}{*}{}& & \\ \cline{2-3}
& & \\ \cline{2-3}
& & \\ \cline{2-3}
& & \\
\hline
Japanese & & \\ \cline{2-3}
\multirow{4}{*}{} & & \\ \cline{2-3}
& & \\ \cline{2-3}
& & \\ \cline{2-3}
& & \\
\hline
\end{tabular}
\end{document}