将表格移至附录

将表格移至附录

我的 latex 文档中有近 100 个表格环境,我决定将它们放在附录中。移动它们并提供对它们的引用的最简单方法是什么?我真的不想将它们全部复制并粘贴,然后添加引用。

答案1

不知道文档类别或其他任何内容,这可能是从起点到完整解决方案的任何东西:

\documentclass{report}
\usepackage[nomarkers,nolists]{endfloat}
\renewcommand{\efloatseparator}{\mbox{}} % allows tables to share a page

\begin{document}
\chapter{A chapter}

As shown in Tables~\ref{tab:one} and \ref{tab:another}, we have two variables.
\begin{table}[tb]
\centering
\begin{tabular}{cc}
A & B \\
1 & 2 \\
3 & 4
\end{tabular}
\caption{\label{tab:one} A Table}
\end{table}

\begin{table}[tb]
\centering
\begin{tabular}{cc}
C & D \\
5 & 6 \\
7 & 8
\end{tabular}
\caption{\label{tab:another} A Second Table}
\end{table}

\appendix
\chapter{An appendix}

\processdelayedfloats

\end{document}

在此处输入图片描述

相关内容