论文“自然问题的 BERT 基线”中的表格的 Latex

论文“自然问题的 BERT 基线”中的表格的 Latex

在此处输入图片描述

我正在寻找此表的代码

答案1

给你,这是一个非常简单的表格。你必须自己更新数字。

在此处输入图片描述

\documentclass{article}
\usepackage{array, booktabs}
\usepackage{geometry}

\setlength{\extrarowheight}{1pt}
\renewcommand*{\arraystretch}{1.1}

\begin {document}

\begin{table}
\small
\centering
\caption{A caption with interesting information\label{tab:table}}
\begin{tabular}{@{}@{}r*{6}{c}@{}}

\toprule
                   & \multicolumn{3}{c}{Long Answer Dev } 
                   & \multicolumn{3}{c@{}}{Long Answer Test}\\             
                   & P    & R    & F1   & P    & R    & F1  \\
\midrule
DocumentsQA        & 47.5 & 44.7 & 46.1 & 48.9 & 43.3 & 45.7 \\
DecAtt + DocReader & 47.5 & 44.7 & 46.1 & 48.9 & 43.3 & 45.7 \\
\bfseries BERT\textsubscript{joint} (this work)
                   & \bfseries 61.3 & \bfseries 68.4 & \bfseries 64.7
                   & \bfseries 64.1 & \bfseries 68.3 & \bfseries 66.2 \\
\midrule
Single Human       & 80.4 & 67.6 & 73.4 & --   & --  & -- \\
Super-annotator    & 47.5 & 44.7 & 46.1 & --   & --  & -- \\

\bottomrule
\end{tabular}
\end{table}

\end{document}

相关内容