Latex Longtable - 标题从边缘开始

Latex Longtable - 标题从边缘开始

我在使用 longtable 时遇到了问题\caption。标题未设置\textlength并超出了页边距。我希望多行标题限制在\textlength表格下方并居中。

屏幕截图 1

屏幕截图 2

我努力了:

\usepackage{caption} \captionsetup[table]{singlelinecheck=false}
\usepackage{caption} \captionsetup[longtable]{singlelinecheck=false}

\LTcapwidth=\textwidth

但一切都无济于事。

示例表如下:

\LTcapwidth=\textwidth
\begin{longtable}[c]{l c c c c c c}
 & $p < 0.05$ & $p < 0.01$ & $p < 0.001$ & $p < 10^{-6}$ & $p < 10^{-7}$ & $p <                 p_{\text{genome}}$\\
SNP p-value & 80 & 80 & 80 & 0 & 0 & 0\\
SNP p-value Inverse & 80 & 80 & 80 & 0 & 0 & 0\\
Tree Min p-value & 80 & 80 & 80 & 4 & 1 & 0\\
Tree Min p-value Inverse & 80 & 80 & 80 & 0 & 0 & 0\\
\label{tab:nullpop}
\caption{A summary of the minimum p-value results for the trees built with     \possessivecite{RefWorks:116} null population data. The value used for $p <     p_{\text{genome}}$ is the value derived from the 1000 Genomes Data of $p < 10^{-8.86}$.}
\end{longtable}

答案1

\label永远不应该在之前\caption,特别是\captiona 中的alongtable必须是完整的行,所以最好放入\label标题参数。

相关内容