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