我的文档中既有对附录章节的引用,也有对附录中公式的引用。正文中的引用没有产生数字,附录中的公式也没有初始章节编号。
此外,主体中的方程编号从零开始。
梅威瑟:
\documentclass{book}
\usepackage{appendix} % for appendices
\usepackage{amsmath}
\numberwithin{equation}{chapter}
\title{Title}
\author{Author}
\date{\today}
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\input{mwe1}
\appendix
\input{mwe2}
\end{document}
mwe1.tex
\chapter{One}
Equation~\ref{app:eq1} in Appendix~\ref{app:app1} shows that x = 1.
Here is another equation:
\begin{equation}\label{One:eq1}
x + y = 3.
\end{equation}
Equation~\ref{One:eq1} shows that x = 2.
mwe2.tex
\chapter{Maths}\label{app:app1}
The equation is
\begin{equation}\label{app:eq1}
x + y = 2
\end{equation}
章节编号未包含在目录中。