]> git.lyx.org Git - lyx.git/blob - lib/layouts/eqs-within-sections.module
Update layouts
[lyx.git] / lib / layouts / eqs-within-sections.module
1 #\DeclareLyXModule{Number Equations by Section}
2 #\DeclareCategory{Maths}
3 #DescriptionBegin
4 #Resets the equation number at section start and prepends
5 #the section number to the equation number, as in '(2.1)'.
6 #DescriptionEnd
7
8 Format 85
9
10 Requires amsmath
11
12 AddToPreamble
13         \numberwithin{equation}{section}
14 EndPreamble
15
16 Counter equation
17         GuiName Equation
18         Within section
19         LabelString "\thesection.\arabic{equation}"
20 End