]> git.lyx.org Git - features.git/commitdiff
Fix label display in linguistic examples
authorJuergen Spitzmueller <spitz@lyx.org>
Fri, 14 Oct 2016 09:40:53 +0000 (11:40 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Fri, 14 Oct 2016 09:45:32 +0000 (11:45 +0200)
Ideally, we would use a proper counter here, but this seems to be
impossible with the current counter mechanism.

What we would need is a counter that is incremented when either of the
layouts is used. Currently, the counter seems to be stepped only inside
one layout.

The current fix is a candidate for stable.

lib/layouts/linguistics.module

index c2f3df1e335dd022ef510216be6b5885b2f5f118..062d5eedfcaac9119053bcbfed19377dcb382d7d 100644 (file)
@@ -9,6 +9,33 @@
 
 Format 60
 
+# FIXME: It is currently not possible to share a
+# counter in layouts with STATIC and ENUMERATE
+# LabelType. The counters are not stepped properly.
+Counter example
+       Within               chapter
+#      LabelString          "(\arabic{example})"
+       LabelString          "Examples:"
+End
+
+Counter examplei
+       Within               chapter
+#      LabelString          "(\arabic{examplei})"
+       LabelString          "Examples:"
+End
+
+Counter subexample
+       Within               examplei
+#      LabelString          "\theexamplei (\alph{subexample})"
+       LabelString          "Subexample:"
+End
+
+Counter subexamplei
+       Within               examplei
+#      LabelString          "\theexamplei (\alph{subexamplei})"
+       LabelString          "Subexample:"
+End
+
 # single numbered example with covington.sty
 Style Numbered_Example_(multiline)
        LatexType             Environment
@@ -24,6 +51,7 @@ Style Numbered_Example_(multiline)
        Align                 Block
        AlignPossible         Block, Left
        LabelType             Static
+#      LabelCounter          "example"
        LabelString           "Example:"
        LabelFont
                Shape         Italic
@@ -46,7 +74,8 @@ Style Numbered_Examples_(consecutive)
        CopyStyle             Numbered_Example_(multiline)
        LatexType             Item_Environment
        LatexName             covexamples
-       LabelString           "Examples:"
+       LabelType             Enumerate
+       LabelCounter          "example"
        Argument item:1
                LabelString   "Custom Numbering|s"
                Tooltip       "Customize the numeration"
@@ -65,7 +94,7 @@ End
 Style Subexample
        CopyStyle             Numbered_Examples_(consecutive)
        LatexName             subexample
-       LabelString           "Subexample:"
+       LabelCounter          "subexample"
        Requires              covington,enumitem
        Preamble
                \newenvironment{subexample}{%