]> git.lyx.org Git - lyx.git/blobdiff - lib/layouts/theorems-chap.module
Make continuous spellcheck the default.
[lyx.git] / lib / layouts / theorems-chap.module
index e7422cd0479333bddac963cf17bb570b17c83a21..11dde47cc2ce13ed33cec511a761dcb5e81d5415 100644 (file)
@@ -1,21 +1,30 @@
-#\DeclareLyXModule{Theorems (Order By Chapter)}
+#\DeclareLyXModule{Standard Theorems (Numbered by Chapter)}
+#\DeclareCategory{Maths}
 #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
 
-# Author: Richard Heck <rgheck@comcast.net>
+# Author: Richard Kimberly Heck <rikiheck@lyx.org>
 
-Format 6
+Format 93
 
-Counter
-       Name           theorem
-       Within         chapter
+Counter theorem
+       GuiName Theorem
+       Within chapter
+       LaTeXName thm
 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