同一张表中有两个 tex 文件

同一张表中有两个 tex 文件

我想包括一个包含在生成的 tex 文件中的大型回归输出统计软件。我决定生成两个文件(一个包含前 15 个变量,第二个包含其他 15 个变量),然后使用

\input(firstfile.tex}
\input(secondfile.tex}

但在文档中,我得到了两个表格,分别称为表 1 和表 2,我希望它们分别被称为“表 1(第一部分)”和“表 1(第二部分)”。这可能吗?非常感谢 Juan

答案1

您必须编辑第二个输入,以便您可以修改表格计数器并以这种方式修改标题:

\addtocounter{table}{-1}
\caption{(continued) Foo ...}   

我无法猜测表格是否会使用相同或不同的table浮点数,但这与上述内容无关,因此最终结果必须等同于此:

\documentclass{article}
\begin{document}
\begin{table}
\centering

\caption{Foo}   
\begin{tabular}{ll} 11 & 12 \\21 & 22\\ \end{tabular}

\addtocounter{table}{-1}
\caption{(continued) Bah}   

\begin{tabular}{ll} 31 & 32\\   41 & 42\\ \end{tabular}

\end{table}
\end{document}

相关内容