数字の代わりに小文字を使用して、章内のプロパティの番号を変更する方法

数字の代わりに小文字を使用して、章内のプロパティの番号を変更する方法

2 番目のセクションにいくつかの新しい命題を挿入し、それを「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}

関連情報