我正在尝试使用 Nucleic Acid Research LaTeX 模板创建纸张宽度的表格。经过多次尝试,我还是无法创建如此宽的表格。
有人可以帮忙吗?
模板如下: http://www.oxfordjournals.org/our_journals/nar/for_authors/msprep_submission.html
这是一列表的参考代码:
\begin{table}[b]
\tableparts{%
\caption{This is a table caption}
\label{table:01}%
}{%
\begin{tabular*}{\columnwidth}{@{}lllll@{}}
\toprule
Col. head 1 & Col. head 2 & Col. head 3 & Col. head 4 & Col. head 5
\\
& (\%) & (s$^{-1}$) & (\%) & (s$^{-1}$)
\\
\colrule
Row 1 & Row 1 & Row 1 & -- & --
\\
Row 2 & Row 2 & Row 2 & Row 2 & Row 2
\\
\botrule
\end{tabular*}%
}
{This is a table footnote}
\end{table}
答案1
我获取了与类一起分发的示例文件,并在代码中更改了表环境,例如
\begin{table*}
\tableparts{%
\caption{This is a table caption}
\label{table:01}%
}{%
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}lllll@{}}
\toprule
Col. head 1 & Col. head 2 & Col. head 3 & Col. head 4 & Col. head 5
\\
& (\%) & (s$^{-1}$) & (\%) & (s$^{-1}$)
\\
\colrule
Row 1 & Row 1 & Row 1 & -- & --
\\
Row 2 & Row 2 & Row 2 & Row 2 & Row 2
\\
\botrule
\end{tabular*}%
}
{This is a table footnote}
\end{table*}
注意table*
,\textwidth
而不是\columnwidth
和\extracolsep
。结果表位于图片顶部。