Cómo renumerar una propiedad en un capítulo, usando letras minúsculas en lugar de números

Cómo renumerar una propiedad en un capítulo, usando letras minúsculas en lugar de números

Quiero insertar varias proposiciones nuevas en mi segunda sección y llamarla 'Prop s', 'Prop t'..., espero que alguien pueda ayudarme :) Aquí está mi código.

\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}

ejemplo

Respuesta1

El siguiente ejemplo muestra cómo cambiar el sistema de numeración del entorno de 1.1, 1.2, etc. a a, b, etc., y también cómo volver al sistema de numeración inicial.

ingrese la descripción de la imagen aquí

\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}

información relacionada