0

我正在使用 \longtable 环境,这是代码:

begin{center}
\scriptsize
 \begin{longtable}{|p{2cm}|p{4cm}|p{8cm}|}\hline\hline
 \multicolumn{1}{|p{2cm}|}{\textbf{Text1}} &
 \multicolumn{1}{p{4cm}|}{\textbf{Text2}} &
 \multicolumn{1}{p{8cm}|}{\textbf{Text3}}\\ \hline 
\endfirsthead

\multicolumn{3}{p{3cm}}
{{\bfseries \tablename\ \thetable{} -- continued from previous page}}\\ 
 \hline\multicolumn{1}{|p{2cm}|}{\textbf{Text1}} &
 \multicolumn{1}{p{4cm}|}{\textbf{Text2}} &
 \multicolumn{1}{p{8cm}|}{\textbf{Text3}}\\\hline 
\endhead

\hline \multicolumn{3}{|r|}{{Continued on next page}} \\ \hline
\caption[Caption]{Caption}\label{label-caption} 
\endfoot
\caption[Caption]{Caption}\label{label-caption} 
\endlastfoot

\end{longtable}
\end{center}

所有标题都出现在表格每个部分的底部,这是我想要的结果。但是,有一个非常烦人的皱纹:只有表格最后一部分底部的标题离表格边框太近,我不知道如何控制 \longtable 内的间距。任何建议都非常受欢迎!谢谢。我。

4

1 回答 1

0

您可以通过启用“标题”包的使用来控制标题的位置,然后调整表格和标题之间的跳跃。要对整个文档执行此操作,您可以在序言中使用以下代码:

\usepackage{caption}
\setlength{\belowcaptionskip}{\baselineskip}
于 2011-09-14T23:17:03.830 回答