Ich möchte in meinem zweiten Abschnitt mehrere neue Vorschläge einfügen und sie „Prop s“, „Prop t“ usw. nennen. Ich hoffe, dass mir jemand helfen kann :) Hier ist mein Code.
\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}
Antwort1
Das folgende Beispiel zeigt, wie das Nummerierungssystem der Umgebung von 1,1, 1,2 usw. auf a, b usw. umgestellt wird – und auch, wie man zum ursprünglichen Nummerierungssystem zurückkehrt.
\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}