公式编号如何入章节相关联,而又格式标准。很多人使用的方法是不很正确的。

正确方法是在导言区加入:

\makeatletter % [`@'](mailto:`@')now normal "letter"
\@addtoreset{equation}{section}
\makeatother% [`@'](mailto:`@')is restored as "non-letter"
\renewcommand\theequation{\oldstylenums{\thesection}%
.\oldstylenums{\arabic{equation}}}

演示代码:

\documentclass{article}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{135.0pt}
\makeatletter % [`@'](mailto:`@') now normal "letter"
\@addtoreset{equation}{section}
\makeatother% [`@'](mailto:`@') is restored as "non-letter"
\renewcommand\theequation{\oldstylenums{\thesection}%
.\oldstylenums{\arabic{equation}}}
\begin{document}
\section{Equations\ldots}
\begin{equation} (a+b)^2 = a^2 + 2ab + b^2\end{equation}
\begin{equation} (a-b)^2 = a^2 - 2ab + b^2\end{equation}

\section{\ldots per section}
\begin{equation} (a+b)(a-b) = a^2 -b^2\end{equation}
\end{document}

效果图如下:

点赞(1)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部