正文标签为 2 层,附录标签为 3 层

正文标签为 2 层,附录标签为 3 层

我正在写一些笔记,我想在附录中使用与正文不同的标签惯例。在正文中,我想用 2 个层级标记事物(例如,定理 3.2),而在附录中,我想用 3 个层级标记事物(例如,定理 A.1.5)。这可能吗?

答案1

答案是肯定的,例如这里

\documentclass{article}
\usepackage{amsmath,amsthm}
\newtheorem{mythm}{Theorem}[section] 

\begin{document}
\section{Eucalyptus trees}
\begin{mythm}
   Koalas love eucalyptus. 
\end{mythm}

\section{Marmots}
\begin{mythm}
   Koalas like marmots. 
\end{mythm}

\numberwithin{mythm}{subsection}
\appendix
\section{Activities}
\subsection{During daytime}
\begin{mythm}
   Koalas sleep a lot. 
\end{mythm}
\subsection{Hibernation}
\begin{mythm}
   Koalas don't hibernate. 
\end{mythm}
\end{document}

相关内容