cui/uiconfig/ui/numberingpositionpage.ui | 8 include/xmloff/xmlimp.hxx | 1 officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs | 6 sw/inc/IDocumentSettingAccess.hxx | 2 sw/inc/strings.hrc | 1 sw/inc/viewsh.hxx | 2 sw/qa/extras/odfexport/data/tdf72640-label-align-compat-new.fodt | 717 +++++++++ sw/qa/extras/odfexport/data/tdf72640-label-align-compat-old.fodt | 179 ++ sw/qa/extras/odfexport/data/tdf72640-label-align-compat-thirdparty.fodt | 178 ++ sw/qa/extras/odfexport/odfexport4.cxx | 52 sw/source/core/doc/DocumentSettingManager.cxx | 17 sw/source/core/inc/DocumentSettingManager.hxx | 1 sw/source/core/text/txtfrm.cxx | 25 sw/source/core/view/viewsh.cxx | 13 sw/source/filter/ww8/ww8par.hxx | 1 sw/source/filter/ww8/ww8par3.cxx | 13 sw/source/filter/xml/xmlimp.cxx | 14 sw/source/ui/config/optcomp.cxx | 6 sw/source/uibase/uno/SwXDocumentSettings.cxx | 14 vcl/qa/cppunit/pdfexport/data/tdf72640-label-align-ignores-dir-off.fodt | 795 ++++++++++ vcl/qa/cppunit/pdfexport/data/tdf72640-label-align-ignores-dir-on.fodt | 795 ++++++++++ vcl/qa/cppunit/pdfexport/pdfexport2.cxx | 581 +------ xmloff/qa/unit/uxmloff.cxx | 3 xmloff/source/core/xmlimp.cxx | 4 24 files changed, 2939 insertions(+), 489 deletions(-)
New commits: commit 7fa77b9072096de7aff48d5b927d261551b64134 Author: Jonathan Clark <[email protected]> AuthorDate: Wed Feb 4 08:38:15 2026 -0700 Commit: Jonathan Clark <[email protected]> CommitDate: Fri Feb 6 20:01:06 2026 +0100 tdf#72640 sw: Make list label alignment account for para writing mode This change updates Writer to better conform with the ODF standard wording for the fo:text-align attribute when used in style:list-level-properties. Previously, Writer interpreted list label alignments while ignoring paragraph direction, always behaving as if the list label is always left-to-right. This change updates Writer to instead apply label direction correctly, treating start and end label alignment in a manner similar to how we treat start and end paragraph alignment. The list style dialog has been updated to reflect the new behavior as start/end alignment, rather than left/right alignment. This change also adds the LIST_LABEL_ALIGNMENT_IGNORES_DIRECTION compatibility flag. In order to preserve the layout of existing documents, this flag is enabled automatically when loading an ODF created with earlier versions of LibreOffice. Change-Id: I56cd37fa83487b010369b99570f7bb4750c07595 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198857 Tested-by: Jenkins Reviewed-by: Jonathan Clark <[email protected]> diff --git a/cui/uiconfig/ui/numberingpositionpage.ui b/cui/uiconfig/ui/numberingpositionpage.ui index 85b766809132..13813df86d27 100644 --- a/cui/uiconfig/ui/numberingpositionpage.ui +++ b/cui/uiconfig/ui/numberingpositionpage.ui @@ -425,13 +425,13 @@ numbering and text:</property> <property name="visible">True</property> <property name="can-focus">False</property> <items> - <item translatable="yes" context="numberingpositionpage|liststore1">Left</item> + <item translatable="yes" context="numberingpositionpage|liststore1">Start</item> <item translatable="yes" context="numberingpositionpage|liststore1">Centered</item> - <item translatable="yes" context="numberingpositionpage|liststore1">Right</item> + <item translatable="yes" context="numberingpositionpage|liststore1">End</item> </items> <child internal-child="accessible"> <object class="AtkObject" id="numalignlb-atkobject"> - <property name="AtkObject::accessible-description" translatable="yes" context="numberingpositionpage|extended_tip|numalignlb">Set the alignment of the numbering symbols. Select "Left" to align the numbering symbol to start directly at the "Aligned at" position. Select "Right" to align the symbol to end directly before the "Aligned at" position. Select "Centered" to center the symbol around the "Aligned at" position.</property> + <property name="AtkObject::accessible-description" translatable="yes" context="numberingpositionpage|extended_tip|numalignlb">Set the alignment of the numbering symbols. Select "Start" to align the numbering symbol to start directly at the "Aligned at" position. Select "End" to align the symbol to end directly before the "Aligned at" position. Select "Centered" to center the symbol around the "Aligned at" position.</property> </object> </child> </object> @@ -446,7 +446,7 @@ numbering and text:</property> <property name="can-focus">False</property> <child internal-child="accessible"> <object class="AtkObject" id="num2alignlb-atkobject"> - <property name="AtkObject::accessible-description" translatable="yes" context="numberingpositionpage|extended_tip|num2alignlb">Set the alignment of the numbering symbols. Select "Left" to align the numbering symbol to start directly at the "Aligned at" position. Select "Right" to align the symbol to end directly before the "Aligned at" position. Select "Centered" to center the symbol around the "Aligned at" position.</property> + <property name="AtkObject::accessible-description" translatable="yes" context="numberingpositionpage|extended_tip|num2alignlb">Set the alignment of the numbering symbols. Select "Start" to align the numbering symbol to start directly at the "Aligned at" position. Select "End" to align the symbol to end directly before the "Aligned at" position. Select "Centered" to center the symbol around the "Aligned at" position.</property> </object> </child> </object> diff --git a/include/xmloff/xmlimp.hxx b/include/xmloff/xmlimp.hxx index 6a3d4e57d9c7..77318788b5ec 100644 --- a/include/xmloff/xmlimp.hxx +++ b/include/xmloff/xmlimp.hxx @@ -559,6 +559,7 @@ public: static const sal_uInt16 LO_252 = 82 | LO_flag; static const sal_uInt16 LO_258 = 83 | LO_flag; static const sal_uInt16 LO_262 = 84 | LO_flag; + static const sal_uInt16 LO_268 = 85 | LO_flag; static const sal_uInt16 LO_New = 100 | LO_flag; static const sal_uInt16 ProductVersionUnknown = SAL_MAX_UINT16; diff --git a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs index 0952effa4e6b..ceac1168629c 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs @@ -200,6 +200,12 @@ </info> <value>true</value> </prop> + <prop oor:name="ListLabelAlignmentIgnoresDirection" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Always align list labels as if the paragraph is left-to-right</desc> + </info> + <value>false</value> + </prop> </group> </templates> <component> diff --git a/sw/inc/IDocumentSettingAccess.hxx b/sw/inc/IDocumentSettingAccess.hxx index 8ade13a9ba52..58d5e0beb6c3 100644 --- a/sw/inc/IDocumentSettingAccess.hxx +++ b/sw/inc/IDocumentSettingAccess.hxx @@ -150,6 +150,8 @@ enum class DocumentSettingId FORCE_TOP_ALIGNMENT_IN_CELL_WITH_FLOATING_ANCHOR, // tdf#167583 optionally apply text grid line height to table contents ADJUST_TABLE_LINE_HEIGHTS_TO_GRID_HEIGHT, + // tdf#72640 treat list label alignment as literal left/right, rather than start/end + LIST_LABEL_ALIGNMENT_IGNORES_DIRECTION, }; /** Provides access to settings of a document diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc index d149ec8e09e5..eb7ea1afd81c 100644 --- a/sw/inc/strings.hrc +++ b/sw/inc/strings.hrc @@ -1536,6 +1536,7 @@ #define STR_COMPAT_OPT_UNDERLINETRAILINGSPACE NC_("STR_COMPAT_OPT_UNDERLINETRAILINGSPACE", "Underline Word-compatible trailing blanks") #define STR_COMPAT_OPT_BALANCESPACESANDIDEOGRAPHICSPACES NC_("STR_COMPAT_OPT_BALANCESPACESANDIDEOGRAPHICSPACES", "Adjust spaces to half the width of ideographic spaces, using Word-compatible rules") #define STR_COMPAT_OPT_ADJUSTTABLELINEHEIGHTSTOGRIDHEIGHT NC_("STR_COMPAT_OPT_ADJUSTTABLELINEHEIGHTSTOGRIDHEIGHT", "Adjust line heights to grid height in table") +#define STR_COMPAT_OPT_LISTLABELALIGNMENTIGNORESDIRECTION NC_("STR_COMPAT_OPT_LISTLABELALIGNMENTIGNORESDIRECTION", "Ignore paragraph directions for list label alignment") #define STR_TABLE_PANEL_ALIGN_AUTO NC_("sidebartableedit|alignautolabel", "Automatic") #define STR_TABLE_PANEL_ALIGN_LEFT NC_("sidebartableedit|alignleftlabel", "Left") diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx index 8da56ee9b75b..4a64c49ad4a7 100644 --- a/sw/inc/viewsh.hxx +++ b/sw/inc/viewsh.hxx @@ -477,6 +477,8 @@ public: SW_DLLPUBLIC void SetAdjustTableLineHeightsToGridHeight(bool bValue); + SW_DLLPUBLIC void SetListLabelAlignmentIgnoresDirection(bool bValue); + // DOCUMENT COMPATIBILITY FLAGS END // Calls Idle-formatter of Layout. diff --git a/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-new.fodt b/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-new.fodt new file mode 100644 index 000000000000..76e06341c717 --- /dev/null +++ b/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-new.fodt @@ -0,0 +1,717 @@ +<?xml version='1.0' encoding='UTF-8'?> +<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:c alcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns: meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.text"> + <office:meta><meta:creation-date>2026-02-06T07:02:55.810262545</meta:creation-date><dc:date>2026-02-06T07:04:54.237153918</dc:date><meta:editing-duration>PT1M58S</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="2" meta:word-count="6" meta:character-count="20" meta:non-whitespace-character-count="18"/><meta:generator>LibreOfficeDev/26.8.0.0.alpha0$Linux_X86_64 LibreOffice_project/1b22e1265b6d911a3420606964bc10c3574ca860</meta:generator></office:meta> + <office:font-face-decls> + <style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/> + <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-family-generic="roman" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans1" svg:font-family="'Noto Sans'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans2" svg:font-family="'Noto Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/> + <style:font-face style:name="Noto Serif CJK SC" svg:font-family="'Noto Serif CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/> + </office:font-face-decls> + <office:styles> + <style:default-style style:family="graphic"> + <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="false"/> + <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" loext:tab-stop-distance="0cm" style:writing-mode="lr-tb" style:font-independent-line-spacing="false"> + <style:tab-stops/> + </style:paragraph-properties> + <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="en" fo:country="CA" style:letter-kerning="true" style:font-name-asian="Noto Serif CJK SC" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> + </style:default-style> + <style:default-style style:family="paragraph"> + <style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column" loext:hyphenation-keep-line="false" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/> + <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="en" fo:country="CA" style:letter-kerning="true" style:font-name-asian="Noto Serif CJK SC" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit" loext:hyphenation-compound-remain-char-count="2" loext:hyphenation-compound-push-char-count="2"/> + </style:default-style> + <style:default-style style:family="table"> + <style:table-properties table:border-model="collapsing"/> + </style:default-style> + <style:default-style style:family="table-row"> + <style:table-row-properties fo:keep-together="auto"/> + </style:default-style> + <style:style style:name="Standard" style:family="paragraph" style:class="text"> + <style:text-properties style:font-name="Noto Sans2" fo:font-family="'Noto Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/> + </style:style> + <style:style style:name="Numbering_20_Symbols" style:display-name="Numbering Symbols" style:family="text"/> + <text:outline-style style:name="Outline"> + <text:outline-level-style text:level="1" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="2" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="3" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="4" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="5" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="6" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="7" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="8" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="9" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="10" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + </text:outline-style> + <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> + <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> + <text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/> + <style:style style:name="Default_20_Style.1" style:display-name="Default Style.1" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.2" style:display-name="Default Style.2" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.3" style:display-name="Default Style.3" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.4" style:display-name="Default Style.4" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.5" style:display-name="Default Style.5" style:family="table-cell"> + <style:table-cell-properties fo:border-left="0.51pt solid #000000" fo:border-right="0.51pt solid #000000" fo:border-top="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000" fo:padding="0.102cm" fo:padding-left="0.102cm" fo:padding-right="0.102cm" fo:padding-top="0.102cm" fo:padding-bottom="0.102cm"/> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.6" style:display-name="Default Style.6" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.7" style:display-name="Default Style.7" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.8" style:display-name="Default Style.8" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Default_20_Style.9" style:display-name="Default Style.9" style:family="table-cell"> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:border-top="0.74pt solid #000000" fo:border-bottom="0.74pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:border-bottom="0.74pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:text-properties style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Academic.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Academic.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.1" style:display-name="Box List Blue.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#00599d" fo:border-top="0.74pt solid #00599d"/> + <style:text-properties fo:color="#ffffff" fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.2" style:display-name="Box List Blue.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#adc5e7" fo:border-top="0.74pt solid #00599d" fo:border-bottom="0.74pt solid #00599d"/> + <style:text-properties fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.3" style:display-name="Box List Blue.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:table-cell-properties fo:border-left="0.74pt solid #00599d"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.4" style:display-name="Box List Blue.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:table-cell-properties fo:border-right="0.74pt solid #00599d"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.5" style:display-name="Box List Blue.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.6" style:display-name="Box List Blue.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.7" style:display-name="Box List Blue.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:table-cell-properties fo:background-color="#dddddd"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.8" style:display-name="Box List Blue.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Blue.9" style:display-name="Box List Blue.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Green.1" style:display-name="Box List Green.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#009353" fo:border-top="0.74pt solid #009353"/> + <style:text-properties fo:color="#ffffff" fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Green.2" style:display-name="Box List Green.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#bee3d3" fo:border-top="0.74pt solid #009353" fo:border-bottom="0.74pt solid #009353"/> + <style:text-properties fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Green.3" style:display-name="Box List Green.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:table-cell-properties fo:border-left="0.74pt solid #009353"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Green.4" style:display-name="Box List Green.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:table-cell-properties fo:border-right="0.74pt solid #009353"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Green.5" style:display-name="Box List Green.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Box_20_List_20_Green.6" style:display-name="Box List Green.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Green.7" style:display-name="Box List Green.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:table-cell-properties fo:background-color="#dddddd"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Green.8" style:display-name="Box List Green.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Green.9" style:display-name="Box List Green.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Red.1" style:display-name="Box List Red.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#ce181e" fo:border-top="0.74pt solid #ce181e"/> + <style:text-properties fo:color="#ffffff" fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Red.2" style:display-name="Box List Red.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#fcd3c1" fo:border-top="0.74pt solid #ce181e" fo:border-bottom="0.74pt solid #ce181e"/> + <style:text-properties fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Red.3" style:display-name="Box List Red.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:table-cell-properties fo:border-left="0.74pt solid #ce181e"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Red.4" style:display-name="Box List Red.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:table-cell-properties fo:border-right="0.74pt solid #ce181e"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Red.5" style:display-name="Box List Red.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Box_20_List_20_Red.6" style:display-name="Box List Red.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Red.7" style:display-name="Box List Red.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:table-cell-properties fo:background-color="#dddddd"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Red.8" style:display-name="Box List Red.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Red.9" style:display-name="Box List Red.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.1" style:display-name="Box List Yellow.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#faa61a" fo:border-top="0.74pt solid #faa61a"/> + <style:text-properties fo:color="#ffffff" fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.2" style:display-name="Box List Yellow.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#fffbcc" fo:border-top="0.74pt solid #faa61a" fo:border-bottom="0.74pt solid #faa61a"/> + <style:text-properties fo:font-weight="bold"/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.3" style:display-name="Box List Yellow.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:table-cell-properties fo:border-left="0.74pt solid #faa61a"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.4" style:display-name="Box List Yellow.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:table-cell-properties fo:border-right="0.74pt solid #faa61a"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.5" style:display-name="Box List Yellow.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.6" style:display-name="Box List Yellow.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.7" style:display-name="Box List Yellow.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:table-cell-properties fo:background-color="#dddddd"/> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.8" style:display-name="Box List Yellow.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Box_20_List_20_Yellow.9" style:display-name="Box List Yellow.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#ffffff" fo:border-top="1.5pt solid #000000" fo:border-bottom="0.74pt solid #000000"/> + <style:text-properties fo:font-weight="bold"/> + </style:style> + <style:style style:name="Elegant.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#ffffff" fo:border-bottom="1.5pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:table-cell-properties fo:background-color="#eeeeee" fo:border-bottom="0.51pt solid #999999"/> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Elegant.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Elegant.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#cccccc" fo:border-top="0.74pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:border-top="1.5pt double-thin #000000" fo:border-bottom="0.74pt solid #000000"/> + <style:text-properties fo:font-weight="bold"/> + </style:style> + <style:style style:name="Financial.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:table-cell-properties fo:border-left="0.74pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:table-cell-properties fo:border-right="0.74pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:table-cell-properties fo:border-left="0.51pt solid #b2b2b2" fo:border-right="0.51pt solid #b2b2b2" fo:border-top="0.51pt solid #b2b2b2" fo:border-bottom="0.51pt solid #b2b2b2"/> + <style:text-properties style:font-name-asian="Source Han Sans CN Regular" style:font-family-asian="'Source Han Sans CN Regular'" style:font-name-complex="Lohit Devanagari" style:font-family-complex="'Lohit Devanagari'"/> + </style:style> + <style:style style:name="Financial.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Financial.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.1" style:display-name="Simple Grid Columns.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#b2b2b2"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.2" style:display-name="Simple Grid Columns.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.3" style:display-name="Simple Grid Columns.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:table-cell-properties fo:background-color="#ffffff"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.4" style:display-name="Simple Grid Columns.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:table-cell-properties fo:background-color="#ffffff"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.5" style:display-name="Simple Grid Columns.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:table-cell-properties fo:border-left="0.51pt solid #666666" fo:border-right="0.51pt solid #666666" fo:border-top="0.51pt solid #666666" fo:border-bottom="0.51pt solid #666666"/> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.6" style:display-name="Simple Grid Columns.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.7" style:display-name="Simple Grid Columns.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.8" style:display-name="Simple Grid Columns.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:table-cell-properties fo:background-color="#eeeeee"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Columns.9" style:display-name="Simple Grid Columns.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.1" style:display-name="Simple Grid Rows.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#b2b2b2"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.2" style:display-name="Simple Grid Rows.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#eeeeee"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.3" style:display-name="Simple Grid Rows.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.4" style:display-name="Simple Grid Rows.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.5" style:display-name="Simple Grid Rows.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:table-cell-properties fo:border-left="0.51pt solid #666666" fo:border-right="0.51pt solid #666666" fo:border-top="0.51pt solid #666666" fo:border-bottom="0.51pt solid #666666"/> + <style:text-properties style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.6" style:display-name="Simple Grid Rows.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.7" style:display-name="Simple Grid Rows.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:table-cell-properties fo:background-color="#eeeeee"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.8" style:display-name="Simple Grid Rows.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_Grid_20_Rows.9" style:display-name="Simple Grid Rows.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.1" style:display-name="Simple List Shaded.1" style:family="table-cell" style:parent-style-name="Default_20_Style.1"> + <style:table-cell-properties fo:background-color="#000000"/> + <style:text-properties fo:color="#ffffff" fo:font-weight="bold"/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.2" style:display-name="Simple List Shaded.2" style:family="table-cell" style:parent-style-name="Default_20_Style.2"> + <style:table-cell-properties fo:background-color="#ffffff" fo:border-bottom="0.74pt solid #000000"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.3" style:display-name="Simple List Shaded.3" style:family="table-cell" style:parent-style-name="Default_20_Style.3"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.4" style:display-name="Simple List Shaded.4" style:family="table-cell" style:parent-style-name="Default_20_Style.4"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.5" style:display-name="Simple List Shaded.5" style:family="table-cell" style:parent-style-name="Default_20_Style.5"> + <style:text-properties style:font-name-complex="DejaVu Sans" style:font-family-complex="'DejaVu Sans'"/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.6" style:display-name="Simple List Shaded.6" style:family="table-cell" style:parent-style-name="Default_20_Style.6"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.7" style:display-name="Simple List Shaded.7" style:family="table-cell" style:parent-style-name="Default_20_Style.7"> + <style:table-cell-properties fo:background-color="#cccccc"/> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.8" style:display-name="Simple List Shaded.8" style:family="table-cell" style:parent-style-name="Default_20_Style.8"> + <style:text-properties/> + </style:style> + <style:style style:name="Simple_20_List_20_Shaded.9" style:display-name="Simple List Shaded.9" style:family="table-cell" style:parent-style-name="Default_20_Style.9"> + <style:text-properties/> + </style:style> + <table:table-template table:name="Default Style" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Default_20_Style.1"/> + <table:last-row table:style-name="Default_20_Style.2"/> + <table:first-column table:style-name="Default_20_Style.3"/> + <table:last-column table:style-name="Default_20_Style.4"/> + <table:body table:style-name="Default_20_Style.5"/> + <table:even-rows table:style-name="Default_20_Style.6"/> + <table:odd-rows table:style-name="Default_20_Style.7"/> + <table:even-columns table:style-name="Default_20_Style.8"/> + <table:odd-columns table:style-name="Default_20_Style.9"/> + <table:background table:style-name="Default_20_Style.10"/> + <loext:first-row-even-column table:style-name="Default_20_Style.11"/> + <loext:last-row-even-column table:style-name="Default_20_Style.12"/> + <loext:first-row-end-column table:style-name="Default_20_Style.13"/> + <loext:first-row-start-column table:style-name="Default_20_Style.14"/> + <loext:last-row-end-column table:style-name="Default_20_Style.15"/> + <loext:last-row-start-column table:style-name="Default_20_Style.16"/> + </table:table-template> + <table:table-template table:name="Academic" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Academic.1"/> + <table:last-row table:style-name="Academic.2"/> + <table:first-column table:style-name="Academic.3"/> + <table:last-column table:style-name="Academic.4"/> + <table:body table:style-name="Academic.5"/> + <table:even-rows table:style-name="Academic.6"/> + <table:odd-rows table:style-name="Academic.7"/> + <table:even-columns table:style-name="Academic.8"/> + <table:odd-columns table:style-name="Academic.9"/> + <table:background table:style-name="Academic.10"/> + <loext:first-row-even-column table:style-name="Academic.11"/> + <loext:last-row-even-column table:style-name="Academic.12"/> + <loext:first-row-end-column table:style-name="Academic.13"/> + <loext:first-row-start-column table:style-name="Academic.14"/> + <loext:last-row-end-column table:style-name="Academic.15"/> + <loext:last-row-start-column table:style-name="Academic.16"/> + </table:table-template> + <table:table-template table:name="Box List Blue" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Box_20_List_20_Blue.1"/> + <table:last-row table:style-name="Box_20_List_20_Blue.2"/> + <table:first-column table:style-name="Box_20_List_20_Blue.3"/> + <table:last-column table:style-name="Box_20_List_20_Blue.4"/> + <table:body table:style-name="Box_20_List_20_Blue.5"/> + <table:even-rows table:style-name="Box_20_List_20_Blue.6"/> + <table:odd-rows table:style-name="Box_20_List_20_Blue.7"/> + <table:even-columns table:style-name="Box_20_List_20_Blue.8"/> + <table:odd-columns table:style-name="Box_20_List_20_Blue.9"/> + <table:background table:style-name="Box_20_List_20_Blue.10"/> + <loext:first-row-even-column table:style-name="Box_20_List_20_Blue.11"/> + <loext:last-row-even-column table:style-name="Box_20_List_20_Blue.12"/> + <loext:first-row-end-column table:style-name="Box_20_List_20_Blue.13"/> + <loext:first-row-start-column table:style-name="Box_20_List_20_Blue.14"/> + <loext:last-row-end-column table:style-name="Box_20_List_20_Blue.15"/> + <loext:last-row-start-column table:style-name="Box_20_List_20_Blue.16"/> + </table:table-template> + <table:table-template table:name="Box List Green" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Box_20_List_20_Green.1"/> + <table:last-row table:style-name="Box_20_List_20_Green.2"/> + <table:first-column table:style-name="Box_20_List_20_Green.3"/> + <table:last-column table:style-name="Box_20_List_20_Green.4"/> + <table:body table:style-name="Box_20_List_20_Green.5"/> + <table:even-rows table:style-name="Box_20_List_20_Green.6"/> + <table:odd-rows table:style-name="Box_20_List_20_Green.7"/> + <table:even-columns table:style-name="Box_20_List_20_Green.8"/> + <table:odd-columns table:style-name="Box_20_List_20_Green.9"/> + <table:background table:style-name="Box_20_List_20_Green.10"/> + <loext:first-row-even-column table:style-name="Box_20_List_20_Green.11"/> + <loext:last-row-even-column table:style-name="Box_20_List_20_Green.12"/> + <loext:first-row-end-column table:style-name="Box_20_List_20_Green.13"/> + <loext:first-row-start-column table:style-name="Box_20_List_20_Green.14"/> + <loext:last-row-end-column table:style-name="Box_20_List_20_Green.15"/> + <loext:last-row-start-column table:style-name="Box_20_List_20_Green.16"/> + </table:table-template> + <table:table-template table:name="Box List Red" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Box_20_List_20_Red.1"/> + <table:last-row table:style-name="Box_20_List_20_Red.2"/> + <table:first-column table:style-name="Box_20_List_20_Red.3"/> + <table:last-column table:style-name="Box_20_List_20_Red.4"/> + <table:body table:style-name="Box_20_List_20_Red.5"/> + <table:even-rows table:style-name="Box_20_List_20_Red.6"/> + <table:odd-rows table:style-name="Box_20_List_20_Red.7"/> + <table:even-columns table:style-name="Box_20_List_20_Red.8"/> + <table:odd-columns table:style-name="Box_20_List_20_Red.9"/> + <table:background table:style-name="Box_20_List_20_Red.10"/> + <loext:first-row-even-column table:style-name="Box_20_List_20_Red.11"/> + <loext:last-row-even-column table:style-name="Box_20_List_20_Red.12"/> + <loext:first-row-end-column table:style-name="Box_20_List_20_Red.13"/> + <loext:first-row-start-column table:style-name="Box_20_List_20_Red.14"/> + <loext:last-row-end-column table:style-name="Box_20_List_20_Red.15"/> + <loext:last-row-start-column table:style-name="Box_20_List_20_Red.16"/> + </table:table-template> + <table:table-template table:name="Box List Yellow" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Box_20_List_20_Yellow.1"/> + <table:last-row table:style-name="Box_20_List_20_Yellow.2"/> + <table:first-column table:style-name="Box_20_List_20_Yellow.3"/> + <table:last-column table:style-name="Box_20_List_20_Yellow.4"/> + <table:body table:style-name="Box_20_List_20_Yellow.5"/> + <table:even-rows table:style-name="Box_20_List_20_Yellow.6"/> + <table:odd-rows table:style-name="Box_20_List_20_Yellow.7"/> + <table:even-columns table:style-name="Box_20_List_20_Yellow.8"/> + <table:odd-columns table:style-name="Box_20_List_20_Yellow.9"/> + <table:background table:style-name="Box_20_List_20_Yellow.10"/> + <loext:first-row-even-column table:style-name="Box_20_List_20_Yellow.11"/> + <loext:last-row-even-column table:style-name="Box_20_List_20_Yellow.12"/> + <loext:first-row-end-column table:style-name="Box_20_List_20_Yellow.13"/> + <loext:first-row-start-column table:style-name="Box_20_List_20_Yellow.14"/> + <loext:last-row-end-column table:style-name="Box_20_List_20_Yellow.15"/> + <loext:last-row-start-column table:style-name="Box_20_List_20_Yellow.16"/> + </table:table-template> + <table:table-template table:name="Elegant" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Elegant.1"/> + <table:last-row table:style-name="Elegant.2"/> + <table:first-column table:style-name="Elegant.3"/> + <table:last-column table:style-name="Elegant.4"/> + <table:body table:style-name="Elegant.5"/> + <table:even-rows table:style-name="Elegant.6"/> + <table:odd-rows table:style-name="Elegant.7"/> + <table:even-columns table:style-name="Elegant.8"/> + <table:odd-columns table:style-name="Elegant.9"/> + <table:background table:style-name="Elegant.10"/> + <loext:first-row-even-column table:style-name="Elegant.11"/> + <loext:last-row-even-column table:style-name="Elegant.12"/> + <loext:first-row-end-column table:style-name="Elegant.13"/> + <loext:first-row-start-column table:style-name="Elegant.14"/> + <loext:last-row-end-column table:style-name="Elegant.15"/> + <loext:last-row-start-column table:style-name="Elegant.16"/> + </table:table-template> + <table:table-template table:name="Financial" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Financial.1"/> + <table:last-row table:style-name="Financial.2"/> + <table:first-column table:style-name="Financial.3"/> + <table:last-column table:style-name="Financial.4"/> + <table:body table:style-name="Financial.5"/> + <table:even-rows table:style-name="Financial.6"/> + <table:odd-rows table:style-name="Financial.7"/> + <table:even-columns table:style-name="Financial.8"/> + <table:odd-columns table:style-name="Financial.9"/> + <table:background table:style-name="Financial.10"/> + <loext:first-row-even-column table:style-name="Financial.11"/> + <loext:last-row-even-column table:style-name="Financial.12"/> + <loext:first-row-end-column table:style-name="Financial.13"/> + <loext:first-row-start-column table:style-name="Financial.14"/> + <loext:last-row-end-column table:style-name="Financial.15"/> + <loext:last-row-start-column table:style-name="Financial.16"/> + </table:table-template> + <table:table-template table:name="Simple Grid Columns" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="column" table:last-row-start-column="column"> + <table:first-row table:style-name="Simple_20_Grid_20_Columns.1"/> + <table:last-row table:style-name="Simple_20_Grid_20_Columns.2"/> + <table:first-column table:style-name="Simple_20_Grid_20_Columns.3"/> + <table:last-column table:style-name="Simple_20_Grid_20_Columns.4"/> + <table:body table:style-name="Simple_20_Grid_20_Columns.5"/> + <table:even-rows table:style-name="Simple_20_Grid_20_Columns.6"/> + <table:odd-rows table:style-name="Simple_20_Grid_20_Columns.7"/> + <table:even-columns table:style-name="Simple_20_Grid_20_Columns.8"/> + <table:odd-columns table:style-name="Simple_20_Grid_20_Columns.9"/> + <table:background table:style-name="Simple_20_Grid_20_Columns.10"/> + <loext:first-row-even-column table:style-name="Simple_20_Grid_20_Columns.11"/> + <loext:last-row-even-column table:style-name="Simple_20_Grid_20_Columns.12"/> + <loext:first-row-end-column table:style-name="Simple_20_Grid_20_Columns.13"/> + <loext:first-row-start-column table:style-name="Simple_20_Grid_20_Columns.14"/> + <loext:last-row-end-column table:style-name="Simple_20_Grid_20_Columns.15"/> + <loext:last-row-start-column table:style-name="Simple_20_Grid_20_Columns.16"/> + </table:table-template> + <table:table-template table:name="Simple Grid Rows" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Simple_20_Grid_20_Rows.1"/> + <table:last-row table:style-name="Simple_20_Grid_20_Rows.2"/> + <table:first-column table:style-name="Simple_20_Grid_20_Rows.3"/> + <table:last-column table:style-name="Simple_20_Grid_20_Rows.4"/> + <table:body table:style-name="Simple_20_Grid_20_Rows.5"/> + <table:even-rows table:style-name="Simple_20_Grid_20_Rows.6"/> + <table:odd-rows table:style-name="Simple_20_Grid_20_Rows.7"/> + <table:even-columns table:style-name="Simple_20_Grid_20_Rows.8"/> + <table:odd-columns table:style-name="Simple_20_Grid_20_Rows.9"/> + <table:background table:style-name="Simple_20_Grid_20_Rows.10"/> + <loext:first-row-even-column table:style-name="Simple_20_Grid_20_Rows.11"/> + <loext:last-row-even-column table:style-name="Simple_20_Grid_20_Rows.12"/> + <loext:first-row-end-column table:style-name="Simple_20_Grid_20_Rows.13"/> + <loext:first-row-start-column table:style-name="Simple_20_Grid_20_Rows.14"/> + <loext:last-row-end-column table:style-name="Simple_20_Grid_20_Rows.15"/> + <loext:last-row-start-column table:style-name="Simple_20_Grid_20_Rows.16"/> + </table:table-template> + <table:table-template table:name="Simple List Shaded" table:first-row-end-column="row" table:first-row-start-column="row" table:last-row-end-column="row" table:last-row-start-column="row"> + <table:first-row table:style-name="Simple_20_List_20_Shaded.1"/> + <table:last-row table:style-name="Simple_20_List_20_Shaded.2"/> + <table:first-column table:style-name="Simple_20_List_20_Shaded.3"/> + <table:last-column table:style-name="Simple_20_List_20_Shaded.4"/> + <table:body table:style-name="Simple_20_List_20_Shaded.5"/> + <table:even-rows table:style-name="Simple_20_List_20_Shaded.6"/> + <table:odd-rows table:style-name="Simple_20_List_20_Shaded.7"/> + <table:even-columns table:style-name="Simple_20_List_20_Shaded.8"/> + <table:odd-columns table:style-name="Simple_20_List_20_Shaded.9"/> + <table:background table:style-name="Simple_20_List_20_Shaded.10"/> + <loext:first-row-even-column table:style-name="Simple_20_List_20_Shaded.11"/> + <loext:last-row-even-column table:style-name="Simple_20_List_20_Shaded.12"/> + <loext:first-row-end-column table:style-name="Simple_20_List_20_Shaded.13"/> + <loext:first-row-start-column table:style-name="Simple_20_List_20_Shaded.14"/> + <loext:last-row-end-column table:style-name="Simple_20_List_20_Shaded.15"/> + <loext:last-row-start-column table:style-name="Simple_20_List_20_Shaded.16"/> + </table:table-template> + </office:styles> + <office:automatic-styles> + <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard" style:list-style-name="L1"> + <style:text-properties/> + </style:style> + <style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard" style:list-style-name="L1"> + <style:paragraph-properties style:writing-mode="rl-tb" style:writing-mode-automatic="false"/> + <style:text-properties/> + </style:style> + <text:list-style style:name="L1"> + <text:list-level-style-number text:level="1" text:style-name="Numbering_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.27cm" fo:text-indent="-0.635cm" fo:margin-left="1.27cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="2" text:style-name="Numbering_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.905cm" fo:text-indent="-0.635cm" fo:margin-left="1.905cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="3" text:style-name="Numbering_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.54cm" fo:text-indent="-0.635cm" fo:margin-left="2.54cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="4" text:style-name="Numbering_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.175cm" fo:text-indent="-0.635cm" fo:margin-left="3.175cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="5" text:style-name="Numbering_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.81cm" fo:text-indent="-0.635cm" fo:margin-left="3.81cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="6" text:style-name="Numbering_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="4.445cm" fo:text-indent="-0.635cm" fo:margin-left="4.445cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="7" text:style-name="Numbering_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.08cm" fo:text-indent="-0.635cm" fo:margin-left="5.08cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="8" text:style-name="Numbering_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.715cm" fo:text-indent="-0.635cm" fo:margin-left="5.715cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="9" text:style-name="Numbering_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="6.35cm" fo:text-indent="-0.635cm" fo:margin-left="6.35cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="10" text:style-name="Numbering_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="6.985cm" fo:text-indent="-0.635cm" fo:margin-left="6.985cm"/> + </style:list-level-properties> + </text:list-level-style-number> + </text:list-style> + <style:page-layout style:name="pm1"> + <style:page-layout-properties fo:page-width="21.59cm" fo:page-height="27.94cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm" loext:margin-gutter="0cm"> + <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/> + </style:page-layout-properties> + <style:header-style/> + <style:footer-style/> + </style:page-layout> + </office:automatic-styles> + <office:master-styles> + <style:master-page style:name="Standard" style:page-layout-name="pm1"/> + </office:master-styles> + <office:body> + <office:text> + <text:sequence-decls> + <text:sequence-decl text:display-outline-level="0" text:name="Illustration"/> + <text:sequence-decl text:display-outline-level="0" text:name="Table"/> + <text:sequence-decl text:display-outline-level="0" text:name="Text"/> + <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/> + <text:sequence-decl text:display-outline-level="0" text:name="Figure"/> + </text:sequence-decls> + <text:list text:style-name="L1"> + <text:list-item> + <text:p text:style-name="P1">LTR item</text:p> + </text:list-item> + <text:list-item> + <text:p text:style-name="P2">RTL item</text:p> + </text:list-item> + </text:list> + </office:text> + </office:body> +</office:document> \ No newline at end of file diff --git a/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-old.fodt b/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-old.fodt new file mode 100644 index 000000000000..2e367611073c --- /dev/null +++ b/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-old.fodt @@ -0,0 +1,179 @@ +<?xml version='1.0' encoding='UTF-8'?> +<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:c alcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns: meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.text"> + <office:meta><meta:creation-date>2026-02-06T07:02:55.810262545</meta:creation-date><dc:date>2026-02-06T07:06:58.074336268</dc:date><meta:editing-duration>PT3M15S</meta:editing-duration><meta:editing-cycles>2</meta:editing-cycles><meta:generator>LibreOffice/25.8.3.2$Linux_X86_64 LibreOffice_project/580$Build-2</meta:generator><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="2" meta:word-count="6" meta:character-count="20" meta:non-whitespace-character-count="18"/></office:meta> + <office:settings><config:config-item-set config:name="ooo:configuration-settings"/></office:settings> + <office:font-face-decls> + <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-family-generic="roman" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans1" svg:font-family="'Noto Sans'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans2" svg:font-family="'Noto Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/> + <style:font-face style:name="Noto Serif CJK SC" svg:font-family="'Noto Serif CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/> + </office:font-face-decls> + <office:styles> + <style:default-style style:family="graphic"> + <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:writing-mode="lr-tb" style:flow-with-text="false"/> + <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" loext:tab-stop-distance="0cm" style:font-independent-line-spacing="false"> + <style:tab-stops/> + </style:paragraph-properties> + <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="en" fo:country="CA" style:letter-kerning="true" style:font-name-asian="Noto Serif CJK SC" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> + </style:default-style> + <style:default-style style:family="paragraph"> + <style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column" loext:hyphenation-keep-line="false" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/> + <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="en" fo:country="CA" style:letter-kerning="true" style:font-name-asian="Noto Serif CJK SC" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit" loext:hyphenation-compound-remain-char-count="2"/> + </style:default-style> + <style:default-style style:family="table"> + <style:table-properties table:border-model="collapsing"/> + </style:default-style> + <style:default-style style:family="table-row"> + <style:table-row-properties fo:keep-together="auto"/> + </style:default-style> + <style:style style:name="Standard" style:family="paragraph" style:class="text"> + <style:text-properties style:font-name="Noto Sans2" fo:font-family="'Noto Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/> + </style:style> + <style:style style:name="Numbering_20_Symbols" style:display-name="Numbering Symbols" style:family="text"/> + <text:outline-style style:name="Outline"> + <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="2" loext:num-list-format="%2%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="3" loext:num-list-format="%3%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="4" loext:num-list-format="%4%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="5" loext:num-list-format="%5%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="6" loext:num-list-format="%6%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="7" loext:num-list-format="%7%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="8" loext:num-list-format="%8%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="9" loext:num-list-format="%9%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="10" loext:num-list-format="%10%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + </text:outline-style> + <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> + <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> + <text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/> + </office:styles> + <office:automatic-styles> + <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard" style:list-style-name="L1"/> + <style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard" style:list-style-name="L1"> + <style:paragraph-properties fo:text-align="end" style:justify-single-word="false" style:writing-mode="rl-tb"/> + </style:style> + <text:list-style style:name="L1"> + <text:list-level-style-number text:level="1" text:style-name="Numbering_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.27cm" fo:text-indent="-0.635cm" fo:margin-left="1.27cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="2" text:style-name="Numbering_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.905cm" fo:text-indent="-0.635cm" fo:margin-left="1.905cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="3" text:style-name="Numbering_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.54cm" fo:text-indent="-0.635cm" fo:margin-left="2.54cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="4" text:style-name="Numbering_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.175cm" fo:text-indent="-0.635cm" fo:margin-left="3.175cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="5" text:style-name="Numbering_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.81cm" fo:text-indent="-0.635cm" fo:margin-left="3.81cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="6" text:style-name="Numbering_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="4.445cm" fo:text-indent="-0.635cm" fo:margin-left="4.445cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="7" text:style-name="Numbering_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.08cm" fo:text-indent="-0.635cm" fo:margin-left="5.08cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="8" text:style-name="Numbering_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.715cm" fo:text-indent="-0.635cm" fo:margin-left="5.715cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="9" text:style-name="Numbering_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="6.35cm" fo:text-indent="-0.635cm" fo:margin-left="6.35cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="10" text:style-name="Numbering_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="6.985cm" fo:text-indent="-0.635cm" fo:margin-left="6.985cm"/> + </style:list-level-properties> + </text:list-level-style-number> + </text:list-style> + <style:page-layout style:name="pm1"> + <style:page-layout-properties fo:page-width="21.59cm" fo:page-height="27.94cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" style:footnote-max-height="0cm" loext:margin-gutter="0cm"> + <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/> + </style:page-layout-properties> + <style:header-style/> + <style:footer-style/> + </style:page-layout> + <style:style style:name="dp1" style:family="drawing-page"> + <style:drawing-page-properties draw:background-size="full"/> + </style:style> + </office:automatic-styles> + <office:master-styles> + <style:master-page style:name="Standard" style:page-layout-name="pm1" draw:style-name="dp1"/> + </office:master-styles> + <office:body> + <office:text> + <text:sequence-decls> + <text:sequence-decl text:display-outline-level="0" text:name="Illustration"/> + <text:sequence-decl text:display-outline-level="0" text:name="Table"/> + <text:sequence-decl text:display-outline-level="0" text:name="Text"/> + <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/> + <text:sequence-decl text:display-outline-level="0" text:name="Figure"/> + </text:sequence-decls> + <text:list text:style-name="L1"> + <text:list-item> + <text:p text:style-name="P1">LTR item</text:p> + </text:list-item> + <text:list-item> + <text:p text:style-name="P2">RTL item</text:p> + </text:list-item> + </text:list> + </office:text> + </office:body> +</office:document> diff --git a/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-thirdparty.fodt b/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-thirdparty.fodt new file mode 100644 index 000000000000..71ff6c2a28ba --- /dev/null +++ b/sw/qa/extras/odfexport/data/tdf72640-label-align-compat-thirdparty.fodt @@ -0,0 +1,178 @@ +<?xml version='1.0' encoding='UTF-8'?> +<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:c alcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns: meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.text"> + <office:meta><meta:creation-date>2026-02-06T07:02:55.810262545</meta:creation-date><dc:date>2026-02-06T07:06:58.074336268</dc:date><meta:editing-duration>PT3M15S</meta:editing-duration><meta:editing-cycles>2</meta:editing-cycles><meta:generator>SomeThirdPartyGenerator/3.14.0$Linux_X86_64 BigCo/123</meta:generator><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="2" meta:word-count="6" meta:character-count="20" meta:non-whitespace-character-count="18"/></office:meta> + <office:font-face-decls> + <style:font-face style:name="Liberation Serif" svg:font-family="'Liberation Serif'" style:font-family-generic="roman" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans1" svg:font-family="'Noto Sans'" style:font-family-generic="system" style:font-pitch="variable"/> + <style:font-face style:name="Noto Sans2" svg:font-family="'Noto Sans'" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/> + <style:font-face style:name="Noto Serif CJK SC" svg:font-family="'Noto Serif CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/> + </office:font-face-decls> + <office:styles> + <style:default-style style:family="graphic"> + <style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:writing-mode="lr-tb" style:flow-with-text="false"/> + <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" loext:tab-stop-distance="0cm" style:font-independent-line-spacing="false"> + <style:tab-stops/> + </style:paragraph-properties> + <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="en" fo:country="CA" style:letter-kerning="true" style:font-name-asian="Noto Serif CJK SC" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/> + </style:default-style> + <style:default-style style:family="paragraph"> + <style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column" loext:hyphenation-keep-line="false" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/> + <style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="en" fo:country="CA" style:letter-kerning="true" style:font-name-asian="Noto Serif CJK SC" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Noto Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false" loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit" loext:hyphenation-compound-remain-char-count="2"/> + </style:default-style> + <style:default-style style:family="table"> + <style:table-properties table:border-model="collapsing"/> + </style:default-style> + <style:default-style style:family="table-row"> + <style:table-row-properties fo:keep-together="auto"/> + </style:default-style> + <style:style style:name="Standard" style:family="paragraph" style:class="text"> + <style:text-properties style:font-name="Noto Sans2" fo:font-family="'Noto Sans'" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/> + </style:style> + <style:style style:name="Numbering_20_Symbols" style:display-name="Numbering Symbols" style:family="text"/> + <text:outline-style style:name="Outline"> + <text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="2" loext:num-list-format="%2%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="3" loext:num-list-format="%3%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="4" loext:num-list-format="%4%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="5" loext:num-list-format="%5%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="6" loext:num-list-format="%6%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="7" loext:num-list-format="%7%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="8" loext:num-list-format="%8%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="9" loext:num-list-format="%9%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + <text:outline-level-style text:level="10" loext:num-list-format="%10%" style:num-format=""> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="nothing"/> + </style:list-level-properties> + </text:outline-level-style> + </text:outline-style> + <text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/> + <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/> + <text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/> + </office:styles> + <office:automatic-styles> + <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Standard" style:list-style-name="L1"/> + <style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard" style:list-style-name="L1"> + <style:paragraph-properties fo:text-align="end" style:justify-single-word="false" style:writing-mode="rl-tb"/> + </style:style> + <text:list-style style:name="L1"> + <text:list-level-style-number text:level="1" text:style-name="Numbering_20_Symbols" loext:num-list-format="%1%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.27cm" fo:text-indent="-0.635cm" fo:margin-left="1.27cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="2" text:style-name="Numbering_20_Symbols" loext:num-list-format="%2%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.905cm" fo:text-indent="-0.635cm" fo:margin-left="1.905cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="3" text:style-name="Numbering_20_Symbols" loext:num-list-format="%3%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.54cm" fo:text-indent="-0.635cm" fo:margin-left="2.54cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="4" text:style-name="Numbering_20_Symbols" loext:num-list-format="%4%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.175cm" fo:text-indent="-0.635cm" fo:margin-left="3.175cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="5" text:style-name="Numbering_20_Symbols" loext:num-list-format="%5%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.81cm" fo:text-indent="-0.635cm" fo:margin-left="3.81cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="6" text:style-name="Numbering_20_Symbols" loext:num-list-format="%6%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="4.445cm" fo:text-indent="-0.635cm" fo:margin-left="4.445cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="7" text:style-name="Numbering_20_Symbols" loext:num-list-format="%7%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.08cm" fo:text-indent="-0.635cm" fo:margin-left="5.08cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="8" text:style-name="Numbering_20_Symbols" loext:num-list-format="%8%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.715cm" fo:text-indent="-0.635cm" fo:margin-left="5.715cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="9" text:style-name="Numbering_20_Symbols" loext:num-list-format="%9%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="6.35cm" fo:text-indent="-0.635cm" fo:margin-left="6.35cm"/> + </style:list-level-properties> + </text:list-level-style-number> + <text:list-level-style-number text:level="10" text:style-name="Numbering_20_Symbols" loext:num-list-format="%10%." style:num-suffix="." style:num-format="1"> + <style:list-level-properties text:list-level-position-and-space-mode="label-alignment" fo:text-align="end"> + <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="6.985cm" fo:text-indent="-0.635cm" fo:margin-left="6.985cm"/> + </style:list-level-properties> + </text:list-level-style-number> + </text:list-style> + <style:page-layout style:name="pm1"> + <style:page-layout-properties fo:page-width="21.59cm" fo:page-height="27.94cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="20" style:layout-grid-base-height="0.706cm" style:layout-grid-ruby-height="0.353cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="false" style:layout-grid-display="false" style:footnote-max-height="0cm" loext:margin-gutter="0cm"> -e ... etc. - the rest is truncated
