LaTeX 排版问题

LaTeX 排版问题

我正在写论文。在所有章节之后,我只在论文末尾附上一个附录,没有任何章节。我希望附录中的方程编号为 (A.0.1)、(A.0.2) 等。定理编号为定理 A.0.1、定理 A.0.2 等。

请回复我

答案1

不知道您使用的是什么文档类,我无法保证这会起作用。此示例使用book文档类和相关\appendix宏来确定作者已读完本书并开始阅读附录,随后每个附录chapter都被视为附录。此外,在将其纳入您的论文之前,您应该注意@ChristianHupfer 的评论“零计数器看起来不太好看”。

您可以通过\renewcommand更改\theequation标签来反映您想要显示的各种计数器来实现您想要的效果:

\documentclass{book}
\usepackage{lipsum}

\begin{document}
   \chapter{a chapter}
    \lipsum{1}

    \chapter{another chapter}
    \lipsum{1}

    \appendix
    \chapter{an appendix}
    % put the following line in your document in the appendix
    \renewcommand\theequation{\Alph{chapter}.\arabic{section}.\arabic{equation}}
    \begin{equation}
        E = m c^2
        \label{eq:relativity}
    \end{equation}

    \chapter{another appendix}
\end{document}

相关内容