Quero inserir várias novas proposições na minha segunda seção, e nomeá-la como 'Props','Prop t'..., espero que alguém possa me ajudar :) Aqui está o meu 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}
Responder1
O exemplo a seguir mostra como mudar o sistema de numeração do ambiente de 1.1, 1.2, etc para a, b, etc - e também como reverter para o sistema de numeração inicial.
\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}