很长的乳胶表的问题

很长的乳胶表的问题

我的论文出了点小问题。我添加了适合 2 页的很长的表格,但我的 texmaker 编辑器只在一页上显示 pdf 文件,表格没有完成。下一个问题是,最后一列对于一页来说太长了,我附上了包含表格的文件和问题截图。我也尝试使用 tabularx 和 longtables,但没有帮助。

非常感谢你的帮助。Adrian错误

答案1

您必须将表代码放在另一个文件中,然后table.tex在主代码中使用它ltxtable,就像这样

\documentclass{article}
\usepackage{ltxtable}

\begin{document}

\LTXtable{\textwidth}{table.tex}

\end{document}

您的table.tex文件可以像这样(带tabularx格式)

\begin{longtable}{XXX}
\caption{...} %if needed
\label{...}\\ %if needed

... %the header in the first table page
\endfirsthead

... %the header in the other table pages
\endhead

... %the footer in the table pages (all but not last)
\endfoot

... %the footer in the last table pages
\endlastfoot

... %the table content
... %the table content
... %the table content

\end{longtable}

相关内容