我想知道是否有办法修改环境theorem
,以便它与部分/小节进行如下交互:
\section{}
\subsection{}
\begin{ex} Whatever
\end{ex}
\begin{ex}Whatever
\end{ex}
\subsection{}
\begin{ex} Whatever
\end{ex}
会输出类似
1
1.1
Exercise 1.1.1
Exercise 1.1.2
1.2
Exercise 1.2.1
那里\begin{ex}
只是一个“锻炼”的环境。
答案1
您可以使用内置功能进行定理编号:
\documentclass{article}
\usepackage{amsthm} % not necessary
\newtheorem{ex}{Exercise}[subsection]
\begin{document}
\section{}
\subsection{}
\begin{ex}
Whatever
\end{ex}
\begin{ex}
Whatever
\end{ex}
\subsection{}
\begin{ex}
Whatever
\end{ex}
\end{document}