]> git.lyx.org Git - lyx.git/blobdiff - lib/layouts/theorems-chap.module
DocBook: implement title for layouts that previously missed it.
[lyx.git] / lib / layouts / theorems-chap.module
index aae92e23f4f8532eaf88e63182c941aacaa5adb0..1e1142027c450f2027232e25be2ba23eace00946 100644 (file)
@@ -1,20 +1,29 @@
-#\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 | Theorems (AMS)
+#Requires: theorems-std | theorems-ams
+#Excludes: theorems-sec
 
 # Author: Richard Heck <rgheck@comcast.net>
 
-Format 6
+Format 85
 
-Counter
-       Name           theorem
+Counter theorem
+       GuiName 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