如何使用小寫字母而不是數字對章節中的屬性重新編號

如何使用小寫字母而不是數字對章節中的屬性重新編號

我想在第二部分插入幾個新命題,並將其命名為“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}

相關內容