我使用 revtex 撰写论文,各个部分以 I. II. (罗马)的格式进行编号,但是当我使用 时\numberwithin{equation}{section}
,我得到了类似 (I.1) 的内容,但我希望它像 (1.1) 一样,我四处寻找但没有找到任何可以改变它的东西...
所以如果有人能帮忙,我会很感激:)
答案1
\documentclass{revtex4-1}
\usepackage{amsmath}
\numberwithin{equation}{section}
\renewcommand\theequation{\arabic{section}.\arabic{equation}}
\begin{document}
\section{aaa}
\begin{equation}1=2\end{equation}
\section{aaa}
\begin{equation}1=2\end{equation}
\end{document}