如何使用小写字母代替数字重新编号章节中的属性

如何使用小写字母代替数字重新编号章节中的属性

我想在我的第二部分插入几个新的命题,并将其命名为'Prop s','Prop t'......,我希望有人能帮助我:) 这是我的代码。

\documentclass{article}
\usepackage{amsthm}

\theoremstyle{definition}
\newtheorem{prop}{Prop}[section]

\begin{document}
\section{Intro}
\begin{prop}
First one.
\end{prop}
\section{Background}
\begin{prop}
Second one.
\end{prop}
\end{document}

例子

答案1

下面的示例显示如何将环境的编号系统从 1.1、1.2 等切换为 a、b 等——以及如何恢复到初始编号系统。

在此处输入图片描述

\documentclass{article}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem{prop}{Prop}[section]

\begin{document}
\section{Intro}
\begin{prop} First one. \end{prop}

\section{Background}
\let\origprop\theprop  % save the current style
\renewcommand\theprop{\alph{prop}} % change style
\setcounter{prop}{18} % just for this example
\begin{prop} Second one. \end{prop}
\begin{prop} Third one. \end{prop}
\begin{prop} Fourth one. \end{prop}

\section{Analysis}
\renewcommand\theprop{\origprop} % revert to orig. style
\begin{prop} Fifth one. \end{prop}

\end{document}

相关内容