* Bug Description - Compare ~document-styles~ in [[pp-dom-of-an-xml-file]] and [[document-styles]]. Note the absence of ~xmlns:*~ attributes. Stripping out namespace information from the DOM is a bug. - Compare ~font-face-decls~ in [[pp-dom-of-an-xml-file]] and [[font-face-decls]]. Note that the element =font-face-decls= in the DOM doesn't have the prefix ~office:~. AFAICT, every element in the input XML file carries a prefix, and the DOM of all these nodes doesn't carry the part of the string before the ~:~. That is, - ~~ is reported as ~(font-face-decls nil ...)~ without the ~office:~ prefix. - ~~ is reported as ~(font-face ((name . "OpenSymbol") (font-family . "OpenSymbol")))~ without the ~style:~ and ~svg:~ prefixes. Stripping out namespace information from the DOM is a bug #+name: document-styles #+begin_src nxml #+end_src #+name: font-face-decls #+begin_src nxml #+end_src * Install this elisp helper #+begin_src elisp (defun xml-file-name-to-dom (file-name) (with-temp-buffer (insert-file-contents file-name) (libxml-parse-xml-region (point-min) (point-max)))) #+end_src #+RESULTS: : xml-file-name-to-dom * This is the XML file that will be converted to a DOM #+name: xml-file #+begin_src elisp :results value (expand-file-name "org/OrgOdtStyles.xml" data-directory) #+end_src #+RESULTS: xml-file : /usr/local/share/emacs/29.0.50/etc/org/OrgOdtStyles.xml * DOM of the above XML file #+name: dom-of-xml-file #+begin_src elisp :var file-name=xml-file :wrap src elisp :results value pp (xml-file-name-to-dom file-name) #+end_src #+name: pp-dom-of-an-xml-file #+RESULTS: dom-of-xml-file #+begin_src elisp (top nil (comment nil " See etc/org/README for copyright information ") (document-styles ((version . "1.2")) (font-face-decls nil (font-face ((name . "OpenSymbol") (font-family . "OpenSymbol"))) (font-face ((name . "Tahoma1") (font-family . "Tahoma"))) (font-face ((name . "Courier New") (font-family . "'Courier New'") (font-family-generic . "modern") (font-pitch . "fixed"))) (font-face ((name . "NSimSun") (font-family . "NSimSun") (font-family-generic . "modern") (font-pitch . "fixed"))) (font-face ((name . "Times New Roman") (font-family . "'Times New Roman'") (font-family-generic . "roman") (font-pitch . "variable"))) (font-face ((name . "Arial") (font-family . "Arial") (font-family-generic . "swiss") (font-pitch . "variable"))) (font-face ((name . "SimSun") (font-family . "SimSun") (font-family-generic . "system") (font-pitch . "variable"))) (font-face ((name . "Tahoma") (font-family . "Tahoma") (font-family-generic . "system") (font-pitch . "variable")))) (styles nil (default-style ((family . "graphic")) (graphic-properties ((shadow-offset-x . "0.3cm") (shadow-offset-y . "0.3cm") (start-line-spacing-horizontal . "0.283cm") (start-line-spacing-vertical . "0.283cm") (end-line-spacing-horizontal . "0.283cm") (end-line-spacing-vertical . "0.283cm") (flow-with-text . "false"))) (paragraph-properties ((text-autospace . "ideograph-alpha") (line-break . "strict") (writing-mode . "lr-tb") (font-independent-line-spacing . "false")) (tab-stops nil)) (text-properties ((use-window-font-color . "true") (font-size . "12pt") (language . "en") (country . "GB") (letter-kerning . "true") (font-size-asian . "12pt") (language-asian . "zh") (country-asian . "CN") (font-size-complex . "12pt") (language-complex . "hi") (country-complex . "IN")))) (default-style ((family . "paragraph")) (paragraph-properties ((hyphenation-ladder-count . "no-limit") (text-autospace . "ideograph-alpha") (punctuation-wrap . "hanging") (line-break . "strict") (tab-stop-distance . "1.251cm") (writing-mode . "page"))) (text-properties ((use-window-font-color . "true") (font-name . "Times New Roman") (font-size . "12pt") (language . "en") (country . "GB") (letter-kerning . "true") (font-name-asian . "SimSun") (font-size-asian . "12pt") (language-asian . "zh") (country-asian . "CN") (font-name-complex . "Tahoma") (font-size-complex . "12pt") (language-complex . "hi") (country-complex . "IN") (hyphenate . "false") (hyphenation-remain-char-count . "2") (hyphenation-push-char-count . "2")))) (default-style ((family . "table")) (table-properties ((border-model . "collapsing")))) (default-style ((family . "table-row")) (table-row-properties ((keep-together . "auto")))) (comment nil " Outline numbering ") (outline-style ((name . "OrgOutline")) (outline-level-style ((level . "1") (num-suffix . ". ") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-0.762cm") (margin-left . "0.762cm"))))) (outline-level-style ((level . "2") (num-suffix . ". ") (num-format . "1") (display-levels . "2")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-1.016cm") (margin-left . "1.016cm"))))) (outline-level-style ((level . "3") (num-suffix . ". ") (num-format . "1") (display-levels . "3")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-1.27cm") (margin-left . "1.27cm"))))) (outline-level-style ((level . "4") (num-suffix . ". ") (num-format . "1") (display-levels . "4")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-1.524cm") (margin-left . "1.524cm"))))) (outline-level-style ((level . "5") (num-suffix . ". ") (num-format . "1") (display-levels . "5")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-1.778cm") (margin-left . "1.778cm"))))) (outline-level-style ((level . "6") (num-suffix . ". ") (num-format . "1") (display-levels . "6")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-2.032cm") (margin-left . "2.032cm"))))) (outline-level-style ((level . "7") (num-suffix . ". ") (num-format . "1") (display-levels . "7")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-2.286cm") (margin-left . "2.286cm"))))) (outline-level-style ((level . "8") (num-suffix . ". ") (num-format . "1") (display-levels . "8")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-2.54cm") (margin-left . "2.54cm"))))) (outline-level-style ((level . "9") (num-suffix . ". ") (num-format . "1") (display-levels . "9")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-2.794cm") (margin-left . "2.794cm"))))) (outline-level-style ((level . "10") (num-suffix . ". ") (num-format . "1") (display-levels . "10")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "nothing") (text-indent . "-3.048cm") (margin-left . "3.048cm")))))) (style ((name . "Standard") (family . "paragraph") (class . "text"))) (style ((name . "Heading") (family . "paragraph") (parent-style-name . "Standard") (next-style-name . "Text_20_body") (class . "text")) (paragraph-properties ((margin-top . "0.423cm") (margin-bottom . "0.212cm") (keep-with-next . "always")) (tab-stops nil (tab-stop ((position . "17cm") (type . "right"))))) (text-properties ((font-name . "Arial") (font-size . "14pt") (font-name-asian . "SimSun") (font-size-asian . "14pt") (font-name-complex . "Tahoma") (font-size-complex . "14pt")))) (style ((name . "Text_20_body") (display-name . "Text body") (family . "paragraph") (parent-style-name . "Standard") (class . "text")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0.212cm")))) (style ((name . "List") (family . "paragraph") (parent-style-name . "Text_20_body") (class . "list")) (text-properties ((font-name-complex . "Tahoma1")))) (style ((name . "Caption") (family . "paragraph") (parent-style-name . "Standard") (class . "extra")) (paragraph-properties ((margin-top . "0.212cm") (margin-bottom . "0.212cm") (number-lines . "false") (line-number . "0"))) (text-properties ((font-size . "12pt") (font-style . "italic") (font-size-asian . "12pt") (font-style-asian . "italic") (font-name-complex . "Tahoma1") (font-size-complex . "12pt") (font-style-complex . "italic")))) (style ((name . "Index") (family . "paragraph") (parent-style-name . "Standard") (class . "index")) (paragraph-properties ((number-lines . "false") (line-number . "0"))) (text-properties ((font-name-complex . "Tahoma1")))) (style ((name . "Heading_20_1") (display-name . "Heading 1") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "1") (class . "text")) (text-properties ((font-size . "115%") (font-weight . "bold") (font-size-asian . "115%") (font-weight-asian . "bold") (font-size-complex . "115%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_1_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_1") (list-style-name . #1="")) "\n ") (style ((name . "Heading_20_2") (display-name . "Heading 2") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "2") (class . "text")) (text-properties ((font-size . "14pt") (font-style . "italic") (font-weight . "bold") (font-size-asian . "14pt") (font-style-asian . "italic") (font-weight-asian . "bold") (font-size-complex . "14pt") (font-style-complex . "italic") (font-weight-complex . "bold")))) (style ((name . "Heading_20_2_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_2") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_3") (display-name . "Heading 3") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "3") (class . "text")) (text-properties ((font-size . "14pt") (font-weight . "bold") (font-size-asian . "14pt") (font-weight-asian . "bold") (font-size-complex . "14pt") (font-weight-complex . "bold")))) (style ((name . "Heading_20_3_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_3") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_4") (display-name . "Heading 4") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "4") (class . "text")) (text-properties ((font-size . "85%") (font-style . "italic") (font-weight . "bold") (font-size-asian . "85%") (font-style-asian . "italic") (font-weight-asian . "bold") (font-size-complex . "85%") (font-style-complex . "italic") (font-weight-complex . "bold")))) (style ((name . "Heading_20_4_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_4") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_5") (display-name . "Heading 5") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "5") (class . "text")) (text-properties ((font-size . "85%") (font-weight . "bold") (font-size-asian . "85%") (font-weight-asian . "bold") (font-size-complex . "85%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_5_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_5") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_6") (display-name . "Heading 6") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "6") (class . "text")) (text-properties ((font-size . "75%") (font-weight . "bold") (font-size-asian . "75%") (font-weight-asian . "bold") (font-size-complex . "75%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_6_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_6") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_7") (display-name . "Heading 7") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "7") (class . "text")) (text-properties ((font-size . "75%") (font-weight . "bold") (font-size-asian . "75%") (font-weight-asian . "bold") (font-size-complex . "75%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_7_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_7") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_8") (display-name . "Heading 8") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "8") (class . "text")) (text-properties ((font-size . "75%") (font-weight . "bold") (font-size-asian . "75%") (font-weight-asian . "bold") (font-size-complex . "75%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_8_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_8") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_9") (display-name . "Heading 9") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "9") (class . "text")) (text-properties ((font-size . "75%") (font-weight . "bold") (font-size-asian . "75%") (font-weight-asian . "bold") (font-size-complex . "75%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_9_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_9") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_10") (display-name . "Heading 10") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (default-outline-level . "10") (class . "text")) (text-properties ((font-size . "75%") (font-weight . "bold") (font-size-asian . "75%") (font-weight-asian . "bold") (font-size-complex . "75%") (font-weight-complex . "bold")))) (style ((name . "Heading_20_10_unnumbered") (family . "paragraph") (parent-style-name . "Heading_20_10") (list-style-name . #1#)) "\n ") (style ((name . "Heading_20_1.title") (display-name . "Heading 1.title") (family . "paragraph") (parent-style-name . "Heading_20_1")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (style ((name . "Title") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Subtitle") (class . "chapter")) (paragraph-properties ((text-align . "center") (justify-single-word . "false"))) (text-properties ((font-size . "18pt") (font-weight . "bold") (font-size-asian . "18pt") (font-weight-asian . "bold") (font-size-complex . "18pt") (font-weight-complex . "bold")))) (style ((name . "OrgTitle") (family . "paragraph") (parent-style-name . "Title")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0cm"))) (text-properties ((font-size . "24pt")))) (style ((name . "Subtitle") (family . "paragraph") (parent-style-name . "Heading") (next-style-name . "Text_20_body") (class . "chapter")) (paragraph-properties ((text-align . "center") (justify-single-word . "false"))) (text-properties ((font-size . "14pt") (font-style . "italic") (font-size-asian . "14pt") (font-style-asian . "italic") (font-size-complex . "14pt") (font-style-complex . "italic")))) (style ((name . "OrgSubtitle") (family . "paragraph") (parent-style-name . "Subtitle")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0cm"))) (text-properties ((font-size . "20pt")))) (style ((name . "Text_20_body_20_indent") (display-name . "Text body indent") (family . "paragraph") (parent-style-name . "Text_20_body") (class . "text")) (paragraph-properties ((margin-left . "0.499cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")))) (style ((name . "List_20_Indent") (display-name . "List Indent") (family . "paragraph") (parent-style-name . "Text_20_body") (class . "text")) (paragraph-properties ((margin-left . "5.001cm") (margin-right . "0cm") (text-indent . "-4.5cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "0cm")))))) (style ((name . "First_20_line_20_indent") (display-name . "First line indent") (family . "paragraph") (parent-style-name . "Text_20_body") (class . "text")) (paragraph-properties ((margin-left . "0cm") (margin-right . "0cm") (text-indent . "0.499cm") (auto-text-indent . "false")))) (style ((name . "Hanging_20_indent") (display-name . "Hanging indent") (family . "paragraph") (parent-style-name . "Text_20_body") (class . "text")) (paragraph-properties ((margin-left . "1cm") (margin-right . "0cm") (text-indent . "-0.499cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "0cm")))))) (style ((name . "Salutation") (family . "paragraph") (parent-style-name . "Standard") (class . "text")) (paragraph-properties ((number-lines . "false") (line-number . "0")))) (style ((name . "Contents_20_Heading") (display-name . "Contents Heading") (family . "paragraph") (parent-style-name . "Heading") (class . "index")) (paragraph-properties ((margin-left . "0cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false") (number-lines . "false") (line-number . "0"))) (text-properties ((font-size . "16pt") (font-weight . "bold") (font-size-asian . "16pt") (font-weight-asian . "bold") (font-size-complex . "16pt") (font-weight-complex . "bold")))) (style ((name . "Contents_20_1") (display-name . "Contents 1") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "0cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "17cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_2") (display-name . "Contents 2") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "0.499cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "16.501cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_3") (display-name . "Contents 3") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "0.998cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "16.002cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_4") (display-name . "Contents 4") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "1.498cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "15.503cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_5") (display-name . "Contents 5") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "1.997cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "15.004cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_6") (display-name . "Contents 6") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "2.496cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "14.504cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_7") (display-name . "Contents 7") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "2.995cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "14.005cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_8") (display-name . "Contents 8") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "3.494cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "13.506cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_9") (display-name . "Contents 9") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "3.993cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "13.007cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Contents_20_10") (display-name . "Contents 10") (family . "paragraph") (parent-style-name . "Index") (class . "index")) (paragraph-properties ((margin-left . "4.493cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false")) (tab-stops nil (tab-stop ((position . "12.508cm") (type . "right") (leader-style . "dotted") (leader-text . ".")))))) (style ((name . "Quotations") (family . "paragraph") (parent-style-name . "Standard") (class . "html")) (paragraph-properties ((margin-left . "1cm") (margin-right . "1cm") (margin-top . "0cm") (margin-bottom . "0.499cm") (text-indent . "0cm") (auto-text-indent . "false")))) (style ((name . "OrgFootnoteQuotations") (family . "paragraph") (parent-style-name . "Footnote") (class . "html")) (paragraph-properties ((margin-left . "1cm") (margin-right . "1cm") (margin-top . "0cm") (margin-bottom . "0.499cm") (text-indent . "0cm") (auto-text-indent . "false")))) (style ((name . "Preformatted_20_Text") (display-name . "Preformatted Text") (family . "paragraph") (parent-style-name . "Standard") (class . "html")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0cm"))) (text-properties ((font-name . "Courier New") (font-size . "10pt") (font-name-asian . "NSimSun") (font-size-asian . "10pt") (font-name-complex . "Courier New") (font-size-complex . "10pt")))) (style ((name . "OrgVerse") (family . "paragraph") (parent-style-name . "Preformatted_20_Text")) (paragraph-properties ((background-color . "transparent") (padding . "0cm") (border . "none") (shadow . "none")) (background-image nil))) (style ((name . "OrgClock") (family . "paragraph") (parent-style-name . "Text_20_body")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0cm")))) (style ((name . "OrgClockLastLine") (family . "paragraph") (parent-style-name . "OrgClock"))) (style ((name . "OrgPlanning") (family . "paragraph") (parent-style-name . "Text_20_body"))) (comment nil " Fixed width block ") (style ((name . "OrgFixedWidthBlock") (family . "paragraph") (parent-style-name . "Preformatted_20_Text")) (paragraph-properties ((background-color . "#c0c0c0") (padding . "0.049cm") (border . "0.06pt solid #000000") (shadow . "none")) (background-image nil))) (style ((name . "OrgFixedWidthBlockLastLine") (family . "paragraph") (parent-style-name . "OrgFixedWidthBlock")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0.21cm")))) (style ((name . "OrgFormula") (family . "paragraph") (parent-style-name . "Text_20_body")) (paragraph-properties nil (tab-stops nil (tab-stop ((position . "17cm") (type . "right")))))) (style ((name . "OrgSrcBlockLastLine") (family . "paragraph") (parent-style-name . "OrgSrcBlock")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0.21cm")))) (style ((name . "OrgCenter") (family . "paragraph") (parent-style-name . "Text_20_body")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (style ((name . "OrgFootnoteCenter") (family . "paragraph") (parent-style-name . "Footnote")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (style ((name . "OrgTableContents") (family . "paragraph") (parent-style-name . "Text_20_body"))) (style ((name . "OrgTableHeading") (family . "paragraph") (parent-style-name . "OrgTableContents") (class . "extra")) (paragraph-properties ((text-align . "center") (justify-single-word . "false") (number-lines . "false") (line-number . "0"))) (text-properties ((font-weight . "bold") (font-weight-asian . "bold") (font-weight-complex . "bold")))) (style ((name . "OrgTableHeadingLeft") (family . "paragraph") (parent-style-name . "OrgTableHeading")) (paragraph-properties ((text-align . "left") (justify-single-word . "false")))) (style ((name . "OrgTableHeadingRight") (family . "paragraph") (parent-style-name . "OrgTableHeading")) (paragraph-properties ((text-align . "right") (justify-single-word . "false")))) (style ((name . "OrgTableHeadingCenter") (family . "paragraph") (parent-style-name . "OrgTableHeading")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (style ((name . "OrgTableContentsLeft") (family . "paragraph") (parent-style-name . "OrgTableContents")) (paragraph-properties ((text-align . "left") (justify-single-word . "false")))) (style ((name . "OrgTableContentsRight") (family . "paragraph") (parent-style-name . "OrgTableContents")) (paragraph-properties ((text-align . "right") (justify-single-word . "false")))) (style ((name . "OrgTableContentsCenter") (family . "paragraph") (parent-style-name . "OrgTableContents")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (style ((name . "Text_20_body_20_bold") (display-name . "Text body bold") (family . "paragraph") (parent-style-name . "Text_20_body") (next-style-name . "Text_20_body")) (text-properties ((font-weight . "bold")))) (style ((name . "Footnote") (family . "paragraph") (parent-style-name . "Standard") (class . "extra")) (paragraph-properties ((margin-left . "0.499cm") (margin-right . "0cm") (text-indent . "-0.499cm") (auto-text-indent . "false") (number-lines . "false") (line-number . "0"))) (text-properties ((font-size . "10pt") (font-size-asian . "10pt") (font-size-complex . "10pt")))) (style ((name . "Figure") (family . "paragraph") (parent-style-name . "Caption"))) (style ((name . "Illustration_20_Index_20_Heading") (display-name . "Illustration Index Heading") (family . "paragraph") (parent-style-name . "Heading") (class . "index")) (paragraph-properties ((margin-left . "0cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false") (number-lines . "false") (line-number . "0"))) (text-properties ((font-size . "16pt") (font-weight . "bold") (font-size-asian . "16pt") (font-weight-asian . "bold") (font-size-complex . "16pt") (font-weight-complex . "bold")))) (style ((name . "Table") (family . "paragraph") (parent-style-name . "Caption") (class . "extra")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (style ((name . "Listing") (family . "paragraph") (parent-style-name . "Caption") (class . "extra")) (paragraph-properties ((margin-left . "0cm") (margin-right . "0cm") (text-indent . "0cm") (auto-text-indent . "false") (keep-with-next . "always")) (tab-stops nil))) (style ((name . "Horizontal_20_Line") (display-name . "Horizontal Line") (family . "paragraph") (parent-style-name . "Standard") (next-style-name . "Text_20_body") (class . "html")) (paragraph-properties ((margin-top . "0cm") (margin-bottom . "0.21cm") (page-number . "auto") (padding . "0cm") (border-left . "none") (border-right . "none") (border-top . "none") (border-bottom . "0.06pt solid #000000") (shadow . "none") (number-lines . "false") (line-number . "0") (join-border . "false"))) (text-properties ((font-size . "6pt") (font-size-asian . "6pt") (font-size-complex . "6pt")))) (style ((name . "Emphasis") (family . "text")) (text-properties ((font-style . "italic") (font-style-asian . "italic") (font-style-complex . "italic")))) (style ((name . "Underline") (family . "text")) (text-properties ((text-underline-style . "solid") (text-underline-width . "auto") (text-underline-color . "font-color") (background-color . "transparent")))) (style ((name . "Strikethrough") (family . "text")) (text-properties ((text-line-through-style . "solid")))) (style ((name . "Source_20_Text") (display-name . "Source Text") (family . "text")) (text-properties ((font-name . "Courier New") (background-color . "transparent") (font-name-asian . "NSimSun") (font-name-complex . "Courier New")))) (style ((name . "Citation") (family . "text")) (text-properties ((font-style . "italic") (font-style-asian . "italic") (font-style-complex . "italic")))) (style ((name . "Example") (family . "text")) (text-properties ((font-name . "Courier New") (background-color . "transparent") (font-name-asian . "NSimSun") (font-name-complex . "Courier New")))) (style ((name . "OrgCode") (family . "text") (parent-style-name . "Source_20_Text"))) (comment nil " BEGIN: Org Agenda Styles ") (style ((name . "OrgTodo") (family . "text"))) (style ((name . "OrgDone") (family . "text"))) (style ((name . "OrgTag") (family . "text")) (text-properties ((font-variant . "small-caps") (background-color . "transparent")))) (style ((name . "OrgTags") (family . "text"))) (style ((name . "OrgPriority") (family . "text"))) (style ((name . "OrgPriority-A") (family . "text") (parent-style-name . "OrgPriority"))) (style ((name . "OrgPriority-B") (family . "text") (parent-style-name . "OrgPriority"))) (style ((name . "OrgPriority-C") (family . "text") (parent-style-name . "OrgPriority"))) (style ((name . "OrgTimestamp") (display-name . "OrgTimestamp") (family . "text")) (text-properties ((font-name . "Courier New") (background-color . "transparent") (font-name-asian . "NSimSun") (font-name-complex . "Courier New")))) (style ((name . "OrgActiveTimestamp") (family . "text") (parent-style-name . "OrgTimestamp"))) (style ((name . "OrgInactiveTimestamp") (family . "text") (parent-style-name . "OrgTimestamp"))) (style ((name . "OrgTimestampKeyword") (family . "text")) (text-properties ((use-window-font-color . "true") (font-weight . "bold")))) (style ((name . "OrgScheduledKeyword") (family . "text") (parent-style-name . "OrgTimestampKeyword"))) (style ((name . "OrgDeadlineKeyword") (family . "text") (parent-style-name . "OrgTimestampKeyword"))) (style ((name . "OrgClockKeyword") (family . "text") (parent-style-name . "OrgTimestampKeyword"))) (style ((name . "OrgClosedKeyword") (family . "text") (parent-style-name . "OrgTimestampKeyword"))) (style ((name . "OrgTimestampWrapper") (family . "text"))) (style ((name . "OrgTarget") (family . "text"))) (date-style ((name . "OrgDate") (automatic-order . "true")) (day ((style . "long"))) (text nil "/") (month ((style . "long"))) (text nil "/") (year ((style . "long")))) (comment nil " END: Org Agenda Styles ") (style ((name . "Bold") (family . "text")) (text-properties ((font-weight . "bold")))) (style ((name . "Numbering_20_Symbols") (display-name . "Numbering Symbols") (family . "text"))) (style ((name . "Footnote_20_Symbol") (display-name . "Footnote Symbol") (family . "text"))) (style ((name . "Footnote_20_anchor") (display-name . "Footnote anchor") (family . "text")) (text-properties ((text-position . "super 58%")))) (style ((name . "OrgSuperscript") (family . "text")) (text-properties ((text-position . "super 58%")))) (style ((name . "OrgSubscript") (family . "text")) (text-properties ((text-position . "sub 58%")))) (style ((name . "Internet_20_link") (display-name . "Internet link") (family . "text")) (text-properties ((color . "#000080") (language . "zxx") (country . "none") (text-underline-style . "solid") (text-underline-width . "auto") (text-underline-color . "font-color") (language-asian . "zxx") (country-asian . "none") (language-complex . "zxx") (country-complex . "none")))) (style ((name . "Graphics") (family . "graphic")) (graphic-properties ((anchor-type . "paragraph") (x . "0cm") (y . "0cm") (wrap . "none") (vertical-pos . "top") (vertical-rel . "paragraph") (horizontal-pos . "center") (horizontal-rel . "paragraph")))) (style ((name . "Frame") (family . "graphic")) (graphic-properties ((anchor-type . "paragraph") (x . "0cm") (y . "0cm") (margin-left . "0.201cm") (margin-right . "0.201cm") (margin-top . "0.201cm") (margin-bottom . "0.201cm") (wrap . "parallel") (number-wrapped-paragraphs . "no-limit") (wrap-contour . "false") (vertical-pos . "top") (vertical-rel . "paragraph-content") (horizontal-pos . "center") (horizontal-rel . "paragraph-content") (padding . "0.15cm") (border . "0.002cm solid #000000")))) (comment nil " Simple Images ") (style ((name . "OrgDisplayImage") (family . "graphic") (parent-style-name . "Graphics")) (graphic-properties ((anchor-type . "paragraph") (wrap . "none") (vertical-pos . "top") (vertical-rel . "paragraph") (horizontal-pos . "center") (horizontal-rel . "paragraph")))) (style ((name . "OrgPageImage") (family . "graphic") (parent-style-name . "Graphics")) (graphic-properties ((anchor-type . "page") (margin-top . "0.21cm") (margin-bottom . "0.21cm") (vertical-pos . "middle") (vertical-rel . "page") (horizontal-pos . "center") (horizontal-rel . "page") (background-color . "transparent") (background-transparency . "100%") (shadow . "none") (mirror . "none") (clip . "rect(0cm, 0cm, 0cm, 0cm)") (luminance . "0%") (contrast . "0%") (red . "0%") (green . "0%") (blue . "0%") (gamma . "100%") (color-inversion . "false") (image-opacity . "100%") (color-mode . "standard")) (background-image nil))) (comment nil " Captioned Images ") (style ((name . "OrgCaptionedImage") (family . "graphic") (parent-style-name . "Graphics")) (graphic-properties ((rel-width . "100%") (anchor-type . "paragraph") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0cm") (margin-bottom . "0cm") (run-through . "foreground") (wrap . "none") (vertical-pos . "from-top") (vertical-rel . "paragraph-content") (horizontal-pos . "from-left") (horizontal-rel . "paragraph-content") (padding . "0cm") (border . "none") (shadow . "none")))) (style ((name . "OrgImageCaptionFrame") (family . "graphic") (parent-style-name . "Frame")) (graphic-properties ((anchor-type . "paragraph") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0cm") (margin-bottom . "0cm") (wrap . "none") (vertical-pos . "top") (vertical-rel . "paragraph") (horizontal-pos . "center") (horizontal-rel . "paragraph") (padding . "0cm") (border . "none")))) (style ((name . "OrgPageImageCaptionFrame") (family . "graphic") (parent-style-name . "Frame")) (graphic-properties ((anchor-type . "paragraph") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0.21cm") (margin-bottom . "0.21cm") (wrap . "none") (vertical-pos . "middle") (vertical-rel . "page") (horizontal-pos . "center") (horizontal-rel . "page") (background-color . "transparent") (background-transparency . "100%") (padding . "0cm") (border . "none") (shadow . "none")) (background-image nil))) (comment nil " Inlined Images ") (style ((name . "OrgInlineImage") (family . "graphic") (parent-style-name . "Graphics")) (graphic-properties ((anchor-type . "as-char") (vertical-pos . "top") (vertical-rel . "baseline") (horizontal-pos . "center") (horizontal-rel . "paragraph")))) (comment nil " Inline Formula ") (style ((name . "OrgFormula") (family . "graphic")) (graphic-properties ((anchor-type . "as-char") (y . "0cm") (margin-left . "0.201cm") (margin-right . "0.201cm") (vertical-pos . "middle") (vertical-rel . "text") (shadow . "none")))) (style ((name . "OrgInlineFormula") (family . "graphic") (parent-style-name . "Formula")) (graphic-properties ((anchor-type . "as-char") (margin-left . "0.201cm") (margin-right . "0.201cm") (vertical-pos . "middle") (vertical-rel . "text")))) (style ((name . "OrgInlineFormula") (family . "graphic") (parent-style-name . "Formula")) (graphic-properties ((vertical-pos . "middle") (vertical-rel . "text") (ole-draw-aspect . "1")))) (style ((name . "OrgDisplayFormula") (family . "graphic") (parent-style-name . "OrgFormula")) (graphic-properties ((vertical-pos . "middle") (vertical-rel . "text") (horizontal-pos . "from-left") (horizontal-rel . "paragraph-content") (ole-draw-aspect . "1")))) (style ((name . "OrgFormulaCaptionFrame") (family . "graphic") (parent-style-name . "Frame")) (graphic-properties ((anchor-type . "paragraph") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0cm") (margin-bottom . "0cm") (wrap . "right") (number-wrapped-paragraphs . "1") (wrap-contour . "false") (vertical-pos . "top") (vertical-rel . "paragraph") (horizontal-pos . "center") (horizontal-rel . "paragraph") (padding . "0cm") (border . "none")))) (style ((name . "OrgCaptionedFormula") (family . "graphic") (parent-style-name . "OrgFormula")) (graphic-properties ((margin-left . "0cm") (margin-right . "0cm") (margin-top . "0cm") (margin-bottom . "0cm") (run-through . "foreground") (wrap . "none") (vertical-pos . "from-top") (vertical-rel . "paragraph-content") (horizontal-pos . "center") (horizontal-rel . "paragraph-content") (padding . "0cm") (border . "none") (shadow . "none") (ole-draw-aspect . "1")))) (comment nil " Inline Tasks ") (style ((name . "OrgInlineTaskHeading") (family . "paragraph") (parent-style-name . "Caption") (next-style-name . "Text_20_body")) (text-properties ((font-name . "Arial1") (font-style . "normal") (font-weight . "bold")))) (style ((name . "OrgInlineTaskFrame") (family . "graphic") (parent-style-name . "Frame")) (graphic-properties ((x . "0cm") (y . "0cm") (wrap . "none") (vertical-pos . "top") (vertical-rel . "paragraph-content") (horizontal-pos . "center") (horizontal-rel . "paragraph-content") (background-color . "#ffffcc") (background-transparency . "0%") (padding . "0.15cm") (border . "0.26pt solid #000000") (shadow . "none")) (background-image nil))) (list-style ((name . "Numbering_20_1") (display-name . "Numbering 1")) (list-level-style-number ((level . "1") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "0.499cm") (text-indent . "-0.499cm") (margin-left . "0.499cm"))))) (list-level-style-number ((level . "2") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "1cm") (text-indent . "-0.499cm") (margin-left . "1cm"))))) (list-level-style-number ((level . "3") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "1.499cm") (text-indent . "-0.499cm") (margin-left . "1.499cm"))))) (list-level-style-number ((level . "4") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "2cm") (text-indent . "-0.499cm") (margin-left . "2cm"))))) (list-level-style-number ((level . "5") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "2.499cm") (text-indent . "-0.499cm") (margin-left . "2.499cm"))))) (list-level-style-number ((level . "6") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "3cm") (text-indent . "-0.499cm") (margin-left . "3cm"))))) (list-level-style-number ((level . "7") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "3.5cm") (text-indent . "-0.499cm") (margin-left . "3.5cm"))))) (list-level-style-number ((level . "8") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "4.001cm") (text-indent . "-0.499cm") (margin-left . "4.001cm"))))) (list-level-style-number ((level . "9") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "4.5cm") (text-indent . "-0.499cm") (margin-left . "4.5cm"))))) (list-level-style-number ((level . "10") (style-name . "Numbering_20_Symbols") (num-suffix . ".") (num-format . "1")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "5.001cm") (text-indent . "-0.499cm") (margin-left . "5.001cm")))))) (list-style ((name . "List_20_1") (display-name . "List 1")) (list-level-style-bullet ((level . "1") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "0.4cm") (text-indent . "-0.4cm") (margin-left . "0.4cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "2") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "0.801cm") (text-indent . "-0.4cm") (margin-left . "0.801cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "3") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "1.199cm") (text-indent . "-0.4cm") (margin-left . "1.199cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "4") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "1.6cm") (text-indent . "-0.4cm") (margin-left . "1.6cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "5") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "2cm") (text-indent . "-0.4cm") (margin-left . "2cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "6") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "2.401cm") (text-indent . "-0.4cm") (margin-left . "2.401cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "7") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "2.799cm") (text-indent . "-0.4cm") (margin-left . "2.799cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "8") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "3.2cm") (text-indent . "-0.4cm") (margin-left . "3.2cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "9") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "3.6cm") (text-indent . "-0.4cm") (margin-left . "3.6cm")))) (text-properties ((font-name . "OpenSymbol")))) (list-level-style-bullet ((level . "10") (style-name . "Numbering_20_Symbols") (bullet-char . "•")) (list-level-properties ((list-level-position-and-space-mode . "label-alignment")) (list-level-label-alignment ((label-followed-by . "listtab") (list-tab-stop-position . "4.001cm") (text-indent . "-0.4cm") (margin-left . "4.001cm")))) (text-properties ((font-name . "OpenSymbol"))))) (comment nil " Numbered List ") (list-style ((name . "OrgNumberedList")) (list-level-style-number ((level . "1") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "0.635cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "2") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "1.27cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "3") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "1.905cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "4") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "2.54cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "5") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "3.175cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "6") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "3.81cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "7") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "4.445cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "8") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "5.08cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "9") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "5.715cm") (min-label-width . "0.635cm")))) (list-level-style-number ((level . "10") (num-suffix . ".") (num-format . "1")) (list-level-properties ((space-before . "6.35cm") (min-label-width . "0.635cm"))))) (comment nil " Bulleted List ") (list-style ((name . "OrgBulletedList")) (list-level-style-bullet ((level . "1") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "0.635cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "2") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "1.27cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "3") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "1.905cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "4") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "2.54cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "5") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "3.175cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "6") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "3.81cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "7") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "4.445cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "8") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "5.08cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "9") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "5.715cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol")))) (list-level-style-bullet ((level . "10") (style-name . "Bullet_20_Symbols") (num-suffix . ".") (bullet-char . "•")) (list-level-properties ((space-before . "6.35cm") (min-label-width . "0.635cm"))) (text-properties ((font-family . "StarSymbol") (font-charset . "x-symbol"))))) (comment nil " Description List ") (list-style ((name . "OrgDescriptionList")) (list-level-style-number ((level . "1") (num-format . #1#)) (list-level-properties ((space-before . "0.635cm")))) (list-level-style-number ((level . "2") (num-format . #1#)) (list-level-properties ((space-before . "1.27cm")))) (list-level-style-number ((level . "3") (num-format . #1#)) (list-level-properties ((space-before . "1.905cm")))) (list-level-style-number ((level . "4") (num-format . #1#)) (list-level-properties ((space-before . "2.54cm")))) (list-level-style-number ((level . "5") (num-format . #1#)) (list-level-properties ((space-before . "3.175cm")))) (list-level-style-number ((level . "6") (num-format . #1#)) (list-level-properties ((space-before . "3.81cm")))) (list-level-style-number ((level . "7") (num-format . #1#)) (list-level-properties ((space-before . "4.445cm")))) (list-level-style-number ((level . "8") (num-format . #1#)) (list-level-properties ((space-before . "5.08cm")))) (list-level-style-number ((level . "9") (num-format . #1#)) (list-level-properties ((space-before . "5.715cm")))) (list-level-style-number ((level . "10") (num-format . #1#)) (list-level-properties ((space-before . "6.35cm"))))) (list-style ((name . "OrgSrcBlockNumberedLine")) (list-level-style-number ((level . "1") (num-format . "1")) (list-level-properties ((space-before . "0.635cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "2") (num-format . "1")) (list-level-properties ((space-before . "1.27cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "3") (num-format . "1")) (list-level-properties ((space-before . "1.905cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "4") (num-format . "1")) (list-level-properties ((space-before . "2.54cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "5") (num-format . "1")) (list-level-properties ((space-before . "3.175cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "6") (num-format . "1")) (list-level-properties ((space-before . "3.81cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "7") (num-format . "1")) (list-level-properties ((space-before . "4.445cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "8") (num-format . "1")) (list-level-properties ((space-before . "5.08cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "9") (num-format . "1")) (list-level-properties ((space-before . "5.715cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end")))) (list-level-style-number ((level . "10") (num-format . "1")) (list-level-properties ((space-before . "6.35cm") (min-label-width . "0.635cm") (min-label-distance . "0.101cm") (text-align . "end"))))) (notes-configuration ((note-class . "footnote") (citation-style-name . "Footnote_20_Symbol") (citation-body-style-name . "Footnote_20_anchor") (num-format . "1") (start-value . "0") (footnotes-position . "page") (start-numbering-at . "document"))) (notes-configuration ((note-class . "endnote") (num-format . "i") (start-value . "0"))) (linenumbering-configuration ((number-lines . "false") (offset . "0.499cm") (num-format . "1") (number-position . "left") (increment . "5")))) (automatic-styles nil (style ((name . "MP1") (family . "paragraph") (parent-style-name . "Footer")) (paragraph-properties ((text-align . "center") (justify-single-word . "false")))) (page-layout ((name . "Mpm1") (page-usage . "mirrored")) (page-layout-properties ((page-width . "21.001cm") (page-height . "29.7cm") (num-format . "1") (print-orientation . "portrait") (margin-top . "2cm") (margin-bottom . "2cm") (margin-left . "2cm") (margin-right . "2cm") (writing-mode . "lr-tb") (footnote-max-height . "0cm")) (footnote-sep ((width . "0.018cm") (distance-before-sep . "0.101cm") (distance-after-sep . "0.101cm") (line-style . "none") (adjustment . "left") (rel-width . "25%") (color . "#000000")))) (header-style nil) (footer-style nil (header-footer-properties ((min-height . "0.6cm") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0.499cm") (dynamic-spacing . "false"))))) (page-layout ((name . "Mpm2")) (page-layout-properties ((page-width . "21.001cm") (page-height . "29.7cm") (num-format . "1") (print-orientation . "portrait") (margin-top . "2cm") (margin-bottom . "2cm") (margin-left . "2cm") (margin-right . "2cm") (writing-mode . "lr-tb") (footnote-max-height . "0cm")) (footnote-sep ((width . "0.018cm") (distance-before-sep . "0.101cm") (distance-after-sep . "0.101cm") (line-style . "solid") (adjustment . "left") (rel-width . "25%") (color . "#000000")))) (header-style nil) (footer-style nil)) (page-layout ((name . "Mpm3") (page-usage . "mirrored")) (page-layout-properties ((page-width . "21.001cm") (page-height . "29.7cm") (num-format . "i") (print-orientation . "portrait") (margin-top . "2cm") (margin-bottom . "2cm") (margin-left . "2cm") (margin-right . "2cm") (writing-mode . "lr-tb") (footnote-max-height . "0cm")) (footnote-sep ((width . "0.018cm") (distance-before-sep . "0.101cm") (distance-after-sep . "0.101cm") (line-style . "solid") (adjustment . "left") (rel-width . "25%") (color . "#000000")))) (header-style nil) (footer-style nil (header-footer-properties ((min-height . "0cm") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0.499cm"))))) (page-layout ((name . "Mpm4") (page-usage . "right")) (page-layout-properties ((page-width . "21.001cm") (page-height . "29.7cm") (num-format . "1") (print-orientation . "portrait") (margin-top . "2cm") (margin-bottom . "2cm") (margin-left . "2cm") (margin-right . "2cm") (background-color . "transparent") (writing-mode . "lr-tb") (footnote-max-height . "0cm")) (background-image nil) (footnote-sep ((width . "0.018cm") (distance-before-sep . "0.101cm") (distance-after-sep . "0.101cm") (line-style . "solid") (adjustment . "left") (rel-width . "25%") (color . "#000000")))) (header-style nil) (footer-style nil (header-footer-properties ((min-height . "0.6cm") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0.499cm") (dynamic-spacing . "false"))))) (page-layout ((name . "Mpm5") (page-usage . "mirrored")) (page-layout-properties ((page-width . "21.001cm") (page-height . "29.7cm") (num-format . "1") (print-orientation . "portrait") (margin-top . "2cm") (margin-bottom . "2cm") (margin-left . "2cm") (margin-right . "2cm") (writing-mode . "lr-tb") (footnote-max-height . "0cm")) (footnote-sep ((width . "0.018cm") (distance-before-sep . "0.101cm") (distance-after-sep . "0.101cm") (line-style . "solid") (adjustment . "left") (rel-width . "25%") (color . "#000000")))) (header-style nil) (footer-style nil (header-footer-properties ((min-height . "0.6cm") (margin-left . "0cm") (margin-right . "0cm") (margin-top . "0.499cm") (dynamic-spacing . "false")))))) (master-styles nil (master-page ((name . "Standard") (page-layout-name . "Mpm1")) (footer nil (p ((style-name . "MP1")) (page-number ((select-page . "current")))))) (master-page ((name . "OrgTitlePage") (page-layout-name . "Mpm2") (next-style-name . "OrgFrontMatterPage"))) (master-page ((name . "OrgFrontMatterPage") (page-layout-name . "Mpm3")) (footer nil (p ((style-name . "MP1")) (page-number ((select-page . "current")))))) (master-page ((name . "OrgFirstPage") (page-layout-name . "Mpm4") (next-style-name . "OrgPage")) (footer nil (p ((style-name . "MP1")) (page-number ((select-page . "current")))))) (master-page ((name . "OrgPage") (page-layout-name . "Mpm5")) (footer nil (p ((style-name . "MP1")) (page-number ((select-page . "current"))))))))) #+end_src