head    1.1;
access;
symbols;
locks
       mys:1.1; strict;
comment @# @;


1.1
date    99.11.22.23.41.12;      author mys;     state Exp;
branches;
next    ;


desc
@@


1.1
log
@Initial revision
@
text
@#################################################################
American Mathmatical Society
#################################################################

All commands below came with package amsthm.
\usepackage{amsthm} ::amsmath::

#################################################################
Erstellen von Theoremen ::newtheorem::
#################################################################

\newtheorem{latex-synonym}{name}
\newtheorem*{latex-synonym}{name}
\newtheorem*{latex-synonym}[latex-synonym2]{name}
\newtheorem*{latex-synonym}{name}[section]

Defines a new enviroment latex-synonym which is numbered as
theorem with name "name" (f.e. axiom).
\begin{latex-synonym}
bla
\end{latex-synonym}
for useing the new theorem

* subdues the numbering.
latex-synonym2 : uses the counter from this theorem
section : an incretion of this counter would set the
theorem counter to the value null
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\theoremstyle{style} ::theoremstyle::

style :
       plain (default)
       definition
       remark
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\swapnumbers ::swapnumbers::

numbering on the left side of the theorem@