mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
2bb93b6c54
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25881 a592a061-630c-0410-9148-cb99ea01b6c8
27 lines
505 B
Plaintext
27 lines
505 B
Plaintext
#\DeclareLyXModule{Theorems (Order By Chapter)}
|
|
#DescriptionBegin
|
|
#Numbers theorems and the like by chapter. Use this module only with
|
|
#layouts that provide a chapter environment.
|
|
#DescriptionEnd
|
|
#Requires: theorems-std | theorems-ams
|
|
|
|
# Author: Richard Heck <rgheck@comcast.net>
|
|
|
|
Format 8
|
|
|
|
Counter
|
|
Name theorem
|
|
Within chapter
|
|
End
|
|
|
|
Style Theorem
|
|
Preamble
|
|
\ifx\thechapter\undefined
|
|
\newtheorem{thm}{Theorem}
|
|
\else
|
|
\newtheorem{thm}{Theorem}[chapter]
|
|
\fi
|
|
|
|
EndPreamble
|
|
End
|