]> git.lyx.org Git - lyx.git/blobdiff - lib/layouts/theorems-chap.module
DocBook: implement LyX-Code.
[lyx.git] / lib / layouts / theorems-chap.module
index f7a2764a284ffeb50a8577d8da37f021f8847162..d72b51f1342ae7992bd7c5030d5b56b5f8ef1f71 100644 (file)
@@ -1,26 +1,29 @@
-#\DeclareLyXModule{Theorems (By Chapter)}
+#\DeclareLyXModule{Standard Theorems (Numbered by Chapter)}
+#\DeclareCategory{Maths}
 #DescriptionBegin
-#Numbers theorems and the like by chapter. Use this module only with
-#layouts that provide a chapter environment.
+#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>
 
-Format 10
+Format 82
 
 Counter theorem
+       GuiName Theorem
        Within         chapter
 End
 
 Style Theorem
        Preamble
+               \theoremstyle{plain}
                \ifx\thechapter\undefined
-                       \newtheorem{thm}{Theorem}
+                       \newtheorem{thm}{\protect\theoremname}
                \else
-                       \newtheorem{thm}{Theorem}[chapter]
+                       \newtheorem{thm}{\protect\theoremname}[chapter]
                \fi
-               
        EndPreamble
 End