7

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.

1 Answers1

5

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.

egreg
  • 1,121,712