我正在为教科书编写解决方案,练习标记为 [章节].[部分].[练习](例如:6.4.32 将是第 6 章第 4 节中的练习 32)。如何使用此编号方案创建定理环境?
到目前为止我已经:
\newcounter{chapter}
\addtocounter{chapter}{6}
\newcounter{section}
\addtocoutner{4}
\newcounter{exercise}
\addtocounter{exercise}{32}
和定理环境:
\theoremstyle{definition}
\newtheorem{exrc}{Exercise}[chapter]
\newtheorem{soln}{Solution}[chapter]
\newtheorem{ans}{Answer}[chapter]
但当然,这只为我提供了正确的章节编号,完全忽略了节号,并假设每个练习都直接从前一个练习开始,从 1 开始(这对于我的目的来说几乎从来不是这种情况)。