apxproof 更改附录标题

apxproof 更改附录标题

我需要使用 apxprrof 包,因为我有只想在附录中展示的证明,而这个包正好满足我的需要。

但是,我还需要在附录中放置一些表格(不是全部),这些表格来自不同的部分。如果我使用“toappendix”环境,表格将正确显示在附录中,但附录的标题将是[LETTER] 第 xy 节的证明。相反,我想给这个部分起个别的标题,[LETTER] 第 xy 节的表格, 说。

我找不到办法。有没有人有解决方案或可以建议其他方法来实现这一点(但仍然能够使用 apxproof 包)?

一个简单的例子:

\documentclass[12pt, a4paper]{article}
\usepackage{apxproof}

\begin{document}
\section{Intro}
    This table goes in the appendix.
    \begin{toappendix}
    \begin{table}[h]
      \centering
      \caption{In the appendix}
        \begin{tabular}{lrrr}
                  & A & B & C \\
            M     & 1     & 2     & 3 \\
            N     & 4     & 5     & 6 \\
         \end{tabular}%
      \label{tab:apx}%
    \end{table}%
    \end{toappendix}

\section{Main result}
  See the appendix a proof that $1 + 2 = 4$.
    \begin{appendixproof}
        proof in the appendix.
    \end{appendixproof}
 \end{document}

这使得身体

身体

附录为

在此处输入图片描述

相关内容