[Libreoffice-ux-advise] [Bug 155834] Unnumbered entries do not move together with their main entry, when list's "move item up / down" commands are used

bugzilla-daemon at bugs.documentfoundation.org bugzilla-daemon at bugs.documentfoundation.org
Sun Jun 25 20:18:27 UTC 2023


https://bugs.documentfoundation.org/show_bug.cgi?id=155834

--- Comment #15 from Mike Kaganski <mikekaganski at hotmail.com> ---
(In reply to Heiko Tietze from comment #13)
> MSO behaves the same as LibreOffice.

I have tested this, and yes, using Move Up/Down function in MS Word 2016 does
behave the same way.
However, it is completely unrelated.

In Word (and in its file format), there is no proper notion of *list item*,
which would include several paragraphs. The list like

  1. a
  2. b
     c
  3. d
  4. e

would be represented by this OOXML markup:

    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>a</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>b</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
        </w:pPr>
        <w:r>
            <w:t>c</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>d</w:t>
        </w:r>
    </w:p>
    <w:p>
        <w:pPr>
            <w:pStyle w:val="ListParagraph"/>
            <w:numPr>
                <w:ilvl w:val="0"/>
                <w:numId w:val="1"/>
            </w:numPr>
        </w:pPr>
        <w:r>
            <w:t>e</w:t>
        </w:r>
    </w:p>

so the "list item" feature of Writer doesn't exist in Word, and so it's
incorrect to consider how Word behaves in this regard. The "unnumbered entries"
in Word are ordinary paragraphs, just having the same paragraph style as
numbered entries, to have the same indentation.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the Libreoffice-ux-advise mailing list