diff options
Diffstat (limited to 'support/tcltexed/hlp/eng/amsthm.txt')
-rw-r--r-- | support/tcltexed/hlp/eng/amsthm.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/support/tcltexed/hlp/eng/amsthm.txt b/support/tcltexed/hlp/eng/amsthm.txt new file mode 100644 index 0000000000..af361c593c --- /dev/null +++ b/support/tcltexed/hlp/eng/amsthm.txt @@ -0,0 +1,38 @@ +#################################################################
+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
\ No newline at end of file |