我有一个等式,例如:
\documentclass{report}
\begin{document}
\chapter{hello}
\begin{equation}
x=1
\end{equation}
\end{document}
并且方程式显示为“x=1 (1.1)”。
我想要的是“x=1 (1)”,忽略章节号。我该如何得到它?
谢谢。
答案1
您可以使用该包chngcntr
\documentclass{report}
\usepackage{chngcntr}
\counterwithout{equation}{chapter} % remove the chapter number
% \counterwithin{equation}{chapter} % add the chapter number
\begin{document}
\chapter{hello}
\begin{equation}
x=1
\end{equation}
\end{document}