]> 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 5a747ea6f61e2ac568a0bff827e14b209f556a73..11dde47cc2ce13ed33cec511a761dcb5e81d5415 100644 (file)
@@ -1,20 +1,30 @@
-#\DeclareLyXModule{Theorems (Order By Chapter)}
+#\DeclareLyXModule{Standard Theorems (Numbered by Chapter)}
+#\DeclareCategory{Maths}
 #DescriptionBegin
-#Numbers theorems and the like 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-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