在回忆录的子索引中强制将表格放在偶数页上会与 amsmath 的 \numberwithin 混淆

在回忆录的子索引中强制将表格放在偶数页上会与 amsmath 的 \numberwithin 混淆

当我使用Schweinebacke 的解决方案是确保表格放在偶数页上memoirsubappendices环境中与amsmath的一起\numberwithin,则\numberwithin不再起作用。也就是说,表编号为“1.1.1”,而不是“1.A.1”。

我如何解决它?

\documentclass{memoir}
\usepackage{afterpage}
\usepackage{amsmath}
\newcommand{\atevenpage}[1]{%
  \afterpage{\clearpage%
    \ifodd\value{page}%
      \atevenpage{#1}%
    \else%
      #1%
    \fi%
  }%
}
\usepackage{filecontents}
\begin{filecontents*}{my_input.tex}
  \begin{table}[p]
    \caption{A table}
    \begin{tabular}{lrr}
      & A & B \\
      First row & 123 & 456 \\
      Second row & 123 & 456 \\
    \end{tabular}
  \end{table}
\end{filecontents*}
\begin{document}
  \chapter{A chapter}
  \begin{subappendices}
    \numberwithin{table}{section}
    \section{An appendix}
    \atevenpage{\input{my_input}}
  \end{subappendices}
\end{document}

答案1

一条长评论。

尝试将其添加到你的序言中

\AddToHook{env/subappendices/begin}{\typeout{begin subapp}}
\AddToHook{env/subappendices/end}{\typeout{end subapp}}
\AddToHook{env/table/begin}{\typeout{begin table}}
\AddToHook{env/table/end}{\typeout{end table}}

然后您可以在日志中看到,由于表格延迟,子附录在表格运行时已经结束。这\numberwithin{table}{section}是局部定义,因此在\end{subappendices}

相关内容