My first question is about theorem numbering.
I want theorem types: theorem, proposition, assumption, definition, corollary, lemma,...
I want them to be numbered independently.
When I use Theorems (AMS) and Theorems (AMS-Extended) they are numbered jointly (assumption 1, definition 2, theorem 3,...).
One solution would be to remove Theorems (AMS-Extended) and define my own. But that does not seem to be working.
Here is the code:
Code: Select all
\usepackage{amsthm}\usepackage{amssymb}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.\numberwithin{equation}{section} %% Comment out for sequentially-numbered\numberwithin{figure}{section} %% Comment out for sequentially-numbered\theoremstyle{plain}\theoremstyle{plain}\newtheorem{thm}{Theorem}\theoremstyle{plain}\newtheorem{assumption}[thm]{Assumption}\theoremstyle{plain}\newtheorem{fact}[thm]{Fact}\theoremstyle{definition}\newtheorem{defn}[thm]{Definition}%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.\newtheorem{userdefined}{Userdefined}
The problem is my "\newtheorem{userdefined}{userdefined}" does not seem to be working: it doesn't seem to create the theorem class, despite looking just like the others in the latex code. (\theoremstyle makes no difference)
What is the solution?
Thanks!