Text FormattingNumbers of Theorems

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Lumy
Posts: 24
Joined: Tue Jan 06, 2009 2:41 pm

Numbers of Theorems

Post by Lumy »

Hello!

Is it possible to enumerate theorems as Theorem A, Theorem B, propositions as Proposition A, .... e.g.:

Proposition A ...............
Theorem B ...........
Theorem C ........
Corrolary D .............
Theorem E .......
Conjecture F ....
I try

Code: Select all

\usepackage{amsthm}
\newtheorem{propA}{Proposition}
\renewcommand{\thepropA}{\Alph{propA}} 
\newtheorem{thmB}{Theorem}
\renewcommand{\thethmB}{\Alph{thmB}} 
but appear: Prosition A, Theorem A ...

Thank you in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10320
Joined: Mon Mar 10, 2008 9:44 pm

Numbers of Theorems

Post by Stefan Kottwitz »

Hi Lumy,

welcome to the board!

You can share a counter using an optional argument for \newtheorem, such as

Code: Select all

\newtheorem{thmB}[propA]{Theorem}
Stefan
LaTeX.org admin
Post Reply