수식 번호 매기기

수식 번호 매기기

amsart를 사용하여 짧은 메모를 작성하고 싶고 공식의 번호가 (1), (2) 등이 되어야 하고((0.1)이 아님...) 또한 정리가 1,2, ((0.1)이 아님...).

0. 의 확산을 방지하려면 어떻게 해야 합니까?

답변1

서문에서 다음을 사용하세요.

\usepackage{chngcntr}
\counterwithout{equation}{section}

답변2

특별한 작업을 수행하면 안 됩니다.

\documentclass{amsart}
\newtheorem{thm}{Theorem}

\begin{document}

\begin{thm}
This states an important fact.
\end{thm}

And we follow with a very important equation
\begin{equation}
1=1
\end{equation}

\end{document}

여기에 이미지 설명을 입력하세요

당신은 아마도 다음과 같은 것을 가지고있을 것입니다

\newtheorem{thm}{Theorem}[section]

그리고

\numberwithin{equation}{section}

그렇지 않으면 보시다시피 섹션 번호가 추가되지 않습니다.

관련 정보