]> git.lyx.org Git - lyx.git/blobdiff - lib/layouts/theorems-chap.module
lyx_2_3.py: whitespace fixes
[lyx.git] / lib / layouts / theorems-chap.module
index e7422cd0479333bddac963cf17bb570b17c83a21..b41b5a2d3f7d1b5840b8e3a9b571f8f803ded592 100644 (file)
@@ -1,21 +1,28 @@
-#\DeclareLyXModule{Theorems (Order By Chapter)}
+#\DeclareLyXModule{Theorems (Numbered by Chapter)}
 #DescriptionBegin
-#Defines some theorem environments for use with non-AMS classes. The theorems are 
-#numbered by chapter.
+#Numbers theorems and the like by chapter (i.e., the counter is reset at
+#each chapter start). Use this module only with document classes that provide a chapter
+#environment.
 #DescriptionEnd
-#Requires: Theorems | Theorems (AMS)
+#Requires: theorems-std | theorems-ams
+#Excludes: theorems-sec
+#Category: theorems
 
 # Author: Richard Heck <rgheck@comcast.net>
 
-Format 6
+Format 63
 
-Counter
-       Name           theorem
+Counter theorem
        Within         chapter
 End
 
 Style Theorem
        Preamble
-               \newtheorem{thm}{Theorem}[chapter]
+               \theoremstyle{plain}
+               \ifx\thechapter\undefined
+                       \newtheorem{thm}{\protect\theoremname}
+               \else
+                       \newtheorem{thm}{\protect\theoremname}[chapter]
+               \fi
        EndPreamble
 End