\documentclass[preprint,12pt,sort&compress]{elsarticle}
\begin{document}
\section{Introduction}
bla bla bla...
\section{Formulation}
\appendix
\section{}
The advection eq is...
\begin{equation}
u_t+au_x&=&0,
\end{equation}
\end{document}
在第节公式中,方程编号为 1,在附录中方程编号为 A.1。我想继续附录中的方程编号,即数字必须是 2。我也试过了
\begin{appendices}
...
\end{appendices}
那么方程编号是可以的(即 2),但主标题是附录而不是附录。我希望主节的标题为“附录”,并且方程编号必须从上一节继续。
非常感谢您的合作。
先感谢您。
比比古尔
答案1
与appendices
环境:
\documentclass[preprint,12pt,sort&compress]{elsarticle}
\usepackage[page]{appendix}
\renewcommand{\appendixpagename}{Appendix}
\begin{document}
\section{Introduction}
bla bla bla...
\begin{equation}
u_t+au_x=0,
\end{equation}
\section{Formulation}
\begin{appendices}
\section{Lalala}
The advection eq is...
\begin{equation}
u_t+au_x=0,
\end{equation}
\end{appendices}
答案2
获得连续方程编号的最简单解决方案是在序言中包含以下两个指令:
\usepackage{chngcntr}
\counterwithout{equation}{chapter}
完整的 MWE:
\documentclass[12pt,a4paper]{report}
\usepackage{chngcntr}
\counterwithout{equation}{chapter}
\pagestyle{headings}
\usepackage{lipsum} % for filler text
\begin{document}
\chapter{Main material}
\section{Introduction}
\begin{equation} 1+1=2 \end{equation}
\section{Formulation}
\begin{equation} 2+2=4 \end{equation}
\lipsum[1-20] % 5 pages of filler text
\appendix
\chapter{Supplemental material}
\section{Hello}
\begin{equation} 3+3=6 \end{equation}
\lipsum[21-40] % 5 pages of filler text
\end{document}