我正在尝试在论文中使用乳胶制作一个跨两列的表格。实际上,我想要以下表格:
基本上我得出了下表:
代码表如下:
\begin{table*}
\begin{tabularx}{\textwidth}{
| >{\centering\arraybackslash}p{1cm} | X | p{0.5cm} |
>{\centering\arraybackslash}X | p{0.5cm} |
> {\centering\arraybackslash}X | p{0.5cm} |
}
\hline
\textbf{Code}
& \multicolumn{2}{c|}{\textbf{Richtige Bewertung}}
% & \multicolumn{2}{c}{ \multirow{2}{}{\textbf{Richtige Bewertung}}}
& \multicolumn{4}{c|}{\textbf{Falsche Bewertung}} \\
\cline{4-7}
& \multicolumn{2}{c|}{}
& \multicolumn{2}{c|}{\textbf{False Negatives}}
& \multicolumn{2}{c|}{\textbf{False Positives}} \\
\hline %% in your example was only one line!
$\mathbf{A_1}$ & \StrokeFive\StrokeFive\StrokeTwo (12) & & & & & \\ \hline
$\mathbf{A_2}$ & & & & & & \\ \hline
$\mathbf{B_1}$ & & & & & & \\ \hline
$\mathbf{B_2}$ & & & & & & \\ \hline
$\mathbf{C_1}$ & & & & & & \\ \hline
$\mathbf{C_2}$ & & & & & & \\ \hline
$\mathbf{D_1}$ & & & & & & \\ \hline
$\mathbf{D_2}$ & & & & & & \\ \hline
\end{tabularx}
\end{table*}
我怎样才能在乳胶中得到我想要的表格?
答案1
以下 MWE 复制表如您的问题中第一张图片所示:
\documentclass[twocolumn]{article}
\usepackage{makecell, multirow, tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\begin{document}
\begin{table*}
\setcellgapes{3pt}
\makegapedcells
\begin{tabularx}{\textwidth}{ | *{6}{C|} }
\hline
\multirow{2.5}{=}{ - - - - }
& \multirow{2.5}{=}{ - - - - }
& \multicolumn{2}{c|}{ - - - - }
& \multicolumn{2}{c|}{ - - - - } \\
\cline{3-6}
& & - - - - & - - - - & - - - - & - - - - \\
\hline
& & - - - - & - - - - & - - - - & - - - - \\
\hline
& & - - - - & - - - - & - - - - & - - - - \\
\hline
\end{tabularx}
\end{table*}
\end{document}
第二张图片显示的是不同的表格,可以通过您的代码重现。因此,不清楚您想要什么。
答案2
这是一个{NiceTabular}
使用 的解决方案nicematrix
。
\documentclass[twocolumn]{article}
\usepackage{nicematrix}
\begin{document}
\begin{table*}
\renewcommand{\arraystretch}{1.5}
\begin{NiceTabular}{*{6}{X[c]}}[hvlines]
\Block{2-1}{ - - - - }
& \Block{2-1}{ - - - - }
& \Block{1-2}{ - - - - }
&& \Block{1-2}{ - - - - } \\
& & - - - - & - - - - & - - - - & - - - - \\
& & - - - - & - - - - & - - - - & - - - - \\
& & - - - - & - - - - & - - - - & - - - - \\
\end{NiceTabular}
\end{table*}
\end{document}