日记帐模板中两列格式的表格对齐问题

日记帐模板中两列格式的表格对齐问题

我在根据 MBE 期刊提供的模板将表格(见附件)的双列格式中的单列对齐时遇到了很多麻烦:

https://academic.oup.com/mbe/pages/General_Author_Guidelines#LaTeX%20Submissions

“此处以 .zip 文件形式提供”中的 zip 文件包含编译的所有相关文件。

在此处输入图片描述

我使用了与表格模板相同的代码。这是一个可编译的代码,它给出了相同的错误消息(我使用 Texmaker):

\documentclass[nogrid]{MBE}%
\usepackage{epstopdf}
\usepackage{url}
\usepackage{booktabs} % Added by LV
\jshort{mst}
\volname{}
\jvolume{0}
\jvol{}
\jissue{0}
\pubyear{2019}
\mstype{Article}
\artid{012}

%\access{Advance Access publication March 3, 2013}

\begin{document}
\title{Title}
\keyword{keywords}
\maketitle

\section*{Results}  

\subsection*{Associations}  

Here I cite \textbf{Table \ref{tab2}}).

\begin{table}[!t]%1
%\begin{center}
\tableparts{
\caption{Association between ... and ...} * Significantly associated.
%\end{center}
\label{tab2}}

{\begin{tabular*}{\columnwidth}{@{\extracolsep{\fill}}lld{5,0}d{5,0}@{}}\toprule 
SNP ID & \mcc{\textit{P}-value} & \mcc{Significance threshold} \\\colrule 

rs2276440 & \mcc{0.060}& \mcc{\hspace*{5pt}$0.0500$}\\
[0.1pt]
rs10924824 & \mcc{0.140} & \mcc{\hspace*{5pt}$0.0050$} \\\botrule
\end{tabular*}}
{}
\end{table}

\end{document}

欢迎提出任何建议。非常感谢。

相关内容