附录编号

附录编号

在我的论文中,我有一个文档样式book,我在其中添加附录,如下所示

\appendix
\renewcommand{\thesection}{A}
\section{General concepts}

第一页如下所示:

在此处输入图片描述

但那里的方程式没有被编号为 (A.12),而只是 (12),定理被编号为定理 .1,而不是定理 A.1。鉴于我还有附录 B 和 C,我想得到枚举 (A.12) 和定理 A.1。我该怎么做?

在所有正规截面中,枚举都是好的,即公式(2.15)和定理2.7。

答案1

由于您使用book,因此您的最高级别切片命令是。因此,对于您的附录\chapter也使用 是有意义的。\chapter

\documentclass[british]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\begin{document}
\chapter{Lorem}
Lorem ipsum
\begin{equation}x^2+y^2=z^2\end{equation}

\appendix
\chapter{General concepts}
Dolor sit amet
\begin{equation}x^2+y^2=z^2\end{equation}
\end{document}

如果您希望将\section其用于附录,则需要付出更多的努力。

\documentclass[british]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{etoolbox}

\apptocmd\appendix{%
  \addcontentsline{toc}{chapter}{Appendix}%
  \renewcommand*{\thesection}{\Alph{section}}%
  \counterwithin{equation}{section}%
  \counterwithin{figure}{section}%
  \counterwithin{table}{section}%
}{}{}

\begin{document}
\tableofcontents
\chapter{Lorem}
Lorem ipsum
\begin{equation}x^2+y^2=z^2\end{equation}
sit amet
\begin{equation}x^2+y^2=z^2\end{equation}

\appendix
\section{General concepts}
Dolor sit amet
\begin{equation}x^2+y^2=z^2\end{equation}
\end{document}

相关内容