我正在寻找如何使用章节计数器删除定理编号中的章节编号。
如果没有部分计数器,则如下:
\newtheorem{thm}{Title}
Chapter1
----Section 1
--------thm 1
--------thm 2
----Section 2
--------thm 3
--------thm 4
Chapter2
----Section 1
--------thm 5
--------thm 6
----Section 2
--------thm 7
--------thm 8
并使用部分计数器:
\newtheorem{thm}{Title}[section]
Chapter 1
----Section 1
--------thm 1.1.1
--------thm 1.1.2
----Section 2
--------thm 1.2.1
--------thm 1.2.2
Chapter 2
----Section 1
--------thm 2.1.1
--------thm 2.1.2
----Section 2
--------thm 2.2.1
--------thm 2.2.2
我希望对我的定理进行这样的编号:
\newtheorem????????
Chapter 1
----Section 1
--------thm 1
--------thm 2
----Section 2
--------thm 1
--------thm 2
Chapter 2
----Section 1
--------thm 1
--------thm 2
----Section 2
--------thm 1
--------thm 2
我知道删除这些东西总是很痛苦的,感谢那些愿意帮助我的人^^
答案1
重新定义\renewcommand{\thethm}{\arabic{thm}}
\documentclass[10pt,a4paper]{report}
\usepackage{amsthm}
\newtheorem{thm}{Title}[section]
\renewcommand{\thethm}{\arabic{thm}}
\begin{document}
\chapter{one}
\section{some}
\begin{thm}
Some theorem
\end{thm}
\begin{thm}
Some theorem
\end{thm}
\section{some}
\begin{thm}
Some theorem
\end{thm}
\begin{thm}
Some theorem
\end{thm}
\chapter{two}
\section{some}
\begin{thm}
Some theorem
\end{thm}
\begin{thm}
Some theorem
\end{thm}
\end{document}