Possible Duplicate:
Numbering theorem-like environments
How can I change the order in which theorems are displayed? I want 10.1 Theorem and not Theorem 10.1 Thanks.
Possible Duplicate:
Numbering theorem-like environments
How can I change the order in which theorems are displayed? I want 10.1 Theorem and not Theorem 10.1 Thanks.
There are various ways to do this, but all involve loading an additional package, as the default format of theorems in LaTeX is quite rigid.
The easiest way is to add to your preamble
\usepackage{amsthm}
\swapnumbers
Alternatively, the ntheorem package provides the change theoremstyle, so declaring
\usepackage{ntheorem}
\theoremstyle{change}
will do.
You may want to look at the thmtools package for other customizations of your theorem-like environments.
theorempackage you're using-amsthm,ntheorem, other? – cmhughes Jan 25 '13 at 17:49