mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
2d2d946fc6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38392 a592a061-630c-0410-9148-cb99ea01b6c8
30 lines
877 B
Plaintext
30 lines
877 B
Plaintext
#% Do not delete the line below; configure depends on this
|
|
#\DeclareLyXModule{Named Theorems}
|
|
#DescriptionBegin
|
|
# Facilitates the use of named theorems. The name of the theorem
|
|
# goes into the 'Short Title' inset.
|
|
#DescriptionEnd
|
|
#Requires: theorems-ams | theorems-starred
|
|
#Original Author: John Perry
|
|
|
|
Format 35
|
|
Style "Named Theorem"
|
|
CopyStyle Theorem*
|
|
Category Theorem
|
|
LabelString "Named Theorem."
|
|
LatexName namedthm
|
|
Preamble
|
|
\newcommand\thmsname{\protect\theoremname}
|
|
\newcommand\nm@thmtype{theorem}
|
|
\theoremstyle{plain}
|
|
\newtheorem*{namedtheorem}{\thmsname}
|
|
\newenvironment{namedthm}[1][Undefined Theorem Name]{
|
|
\ifx{#1}{Undefined Theorem Name}\renewcommand\nm@thmtype{theorem*}
|
|
\else\renewcommand\thmsname{#1}\renewcommand\nm@thmtype{namedtheorem}
|
|
\fi
|
|
\begin{\nm@thmtype}}
|
|
{\end{\nm@thmtype}}
|
|
EndPreamble
|
|
End
|
|
|