停止在多页长表的行之间插入图形/表格

停止在多页长表的行之间插入图形/表格

我必须在附录中包含多页表格。我一直在使用 longtable 包,但我注意到 Latex 会在 longtable 的行之间插入图形和/或表格,如附图所示。

有没有什么办法可以阻止这种行为?

\begin{longtable}{ccccc}
\caption[X]{Y}
\label{table:X}
\hline
\textbf{A} & \textbf{B} & \textbf{C} & \textbf{D} & \textbf{E} \\
\hline
\endfirsthead
\multicolumn{4}{c}%
{\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
\hline
\textbf{A} & \textbf{B} & \textbf{C} & \textbf{D} & \textbf{E} \\
\hline
\endhead
\hline \multicolumn{4}{r}{\textit{Continued on next page}} \\
\endfoot
\endlastfoot
    \toprule
    1 & 2 & 3 & 4 & 5 \\
    \bottomrule
\end{longtable}

\begin{table}
\caption[X]{Y}
\label{table:Y}
\centering
\begin{tabular}{cccc}
    \toprule
    \textbf{A} & \textbf{B} & \textbf{C} & \textbf{D} \\
    \midrule
    1 & 2 & 3 & 4 \\
    \bottomrule
\end{tabular}
\end{table}

在 longtable 的行之间插入表的示例

相关内容