1<!--*********************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 ***********************************************************--> 21 22 23 24<!ELEMENT style:font-decl EMPTY> 25<!ATTLIST style:font-decl style:name %string; #REQUIRED> 26<!ATTLIST style:font-decl fo:font-family %string; #REQUIRED> 27<!ATTLIST style:font-decl style:font-style-name %string; #IMPLIED> 28<!ENTITY % fontFamilyGeneric "(roman|swiss|modern|decorative|script|system)"> 29<!ATTLIST style:font-decl style:font-family-generic %fontFamilyGeneric; 30 #IMPLIED> 31<!ENTITY % fontPitch "(fixed|variable)"> 32<!ATTLIST style:font-decl style:font-pitch %fontPitch; #IMPLIED> 33<!ATTLIST style:font-decl style:font-charset %textEncoding; #IMPLIED> 34 35<!ELEMENT style:style ( style:properties?,office:events?,style:map*)> 36 37<!ATTLIST style:style style:name %styleName; #REQUIRED> 38 39<!ENTITY % styleFamily "(paragraph|text|section| 40 table|table-column|table-row|table-cell|table-page|chart|graphics|default|drawing-page|presentation|control)"> 41<!ATTLIST style:style style:family %styleFamily; #REQUIRED> 42 43<!ATTLIST style:style style:parent-style-name %styleName; #IMPLIED> 44<!ATTLIST style:style style:master-page-name %styleName; #IMPLIED> 45<!ATTLIST style:style style:next-style-name %styleName; #IMPLIED> 46<!ATTLIST style:style style:list-style-name %styleName; #IMPLIED> 47<!ATTLIST style:style style:data-style-name %styleName; #IMPLIED> 48 49<!ATTLIST style:style style:auto-update %boolean; "false"> 50 51<!ATTLIST style:style style:class %string; #IMPLIED> 52 53<!ELEMENT style:default-style (style:properties?)> 54<!ATTLIST style:default-style style:family %styleFamily; #REQUIRED> 55 56<!ELEMENT style:map EMPTY> 57 58<!ATTLIST style:map style:condition %string; #REQUIRED> 59<!ATTLIST style:map style:apply-style-name %styleName; #REQUIRED> 60<!ATTLIST style:map style:base-cell-address %cell-address; #IMPLIED> 61 62<!ELEMENT style:properties ANY> 63 64<!-- number format properties --> 65<!ATTLIST style:properties style:num-prefix %string; #IMPLIED> 66<!ATTLIST style:properties style:num-suffix %string; #IMPLIED> 67<!ATTLIST style:properties style:num-format %string; #IMPLIED> 68<!ATTLIST style:properties style:num-letter-sync %boolean; #IMPLIED> 69 70<!-- frame properties --> 71<!ATTLIST style:properties fo:width %positiveLength; #IMPLIED> 72<!ATTLIST style:properties fo:height %positiveLength; #IMPLIED> 73<!ATTLIST style:properties style:vertical-pos (top|middle|bottom|from-top) #IMPLIED> 74<!ATTLIST style:properties style:vertical-rel (page|page-content| 75 frame|frame-content| 76 paragraph|paragraph-content|char| 77 line|baseline|text) #IMPLIED> 78<!ATTLIST style:properties style:horizontal-pos (left|center|right|from-left|inside|outside|from-inside) #IMPLIED> 79<!ATTLIST style:properties style:horizontal-rel (page|page-content| 80 frame|frame-content| 81 paragraph|paragraph-content| 82 char) #IMPLIED> 83<!ATTLIST style:properties svg:width %lengthOrPercentage; #IMPLIED> 84<!ATTLIST style:properties svg:height %lengthOrPercentage; #IMPLIED> 85<!ATTLIST style:properties fo:min-height %lengthOrPercentage; #IMPLIED> 86<!ATTLIST style:properties fo:min-width %lengthOrPercentage; #IMPLIED> 87<!ATTLIST style:properties fo:max-height %lengthOrPercentage; #IMPLIED> 88<!ATTLIST style:properties fo:max-width %lengthOrPercentage; #IMPLIED> 89<!ATTLIST style:properties text:anchor-type %anchorType; #IMPLIED> 90<!ATTLIST style:properties text:anchor-page-number %positiveInteger; #IMPLIED> 91<!ATTLIST style:properties svg:x %coordinate; #IMPLIED> 92<!ATTLIST style:properties svg:y %coordinate; #IMPLIED> 93<!ATTLIST style:properties style:print-content %boolean; #IMPLIED> 94<!ATTLIST style:properties style:protect %boolean; #IMPLIED> 95<!ATTLIST style:properties style:wrap (none|left|right|parallel|dynamic|run-through) #IMPLIED> 96<!ENTITY % noLimitOrPositiveInteger "CDATA"> 97<!ATTLIST style:properties style:number-wrapped-paragraphs %noLimitOrPositiveInteger; #IMPLIED> 98<!ATTLIST style:properties style:wrap-contour %boolean; #IMPLIED> 99<!ATTLIST style:properties style:wrap-contour-mode (full|outside) #IMPLIED> 100<!ATTLIST style:properties style:run-through (foreground|background) #IMPLIED> 101<!ATTLIST style:properties style:editable %boolean; #IMPLIED> 102<!ATTLIST style:properties style:mirror CDATA #IMPLIED> 103<!ATTLIST style:properties fo:clip CDATA #IMPLIED> 104<!ATTLIST style:properties text:animation (none|scroll|alternate|slide) #IMPLIED> 105<!ATTLIST style:properties text:animation-direction (left|right|up|down) #IMPLIED> 106<!ATTLIST style:properties text:animation-start-inside %boolean; #IMPLIED> 107<!ATTLIST style:properties text:animation-stop-inside %boolean; #IMPLIED> 108<!ATTLIST style:properties text:animation-repeat %integer; #IMPLIED> 109<!ATTLIST style:properties text:animation-delay %timeDuration; #IMPLIED> 110<!ATTLIST style:properties text:animation-steps %length; #IMPLIED> 111 112<!-- text properties --> 113<!ATTLIST style:properties fo:font-variant (normal|small-caps) #IMPLIED> 114<!ATTLIST style:properties fo:text-transform (none|lowercase| 115 uppercase|capitalize) #IMPLIED> 116<!ATTLIST style:properties fo:color %color; #IMPLIED> 117<!ATTLIST style:properties style:use-window-font-color %boolean; #IMPLIED> 118<!ATTLIST style:properties style:text-outline %boolean; #IMPLIED> 119<!ATTLIST style:properties style:text-crossing-out 120 (none|single-line|double-line|thick-line|slash|X) 121 #IMPLIED> 122<!ATTLIST style:properties style:text-position CDATA #IMPLIED> 123<!ATTLIST style:properties style:text-align (left|right|start|center|end|justify|justified) #IMPLIED> 124 125<!ATTLIST style:properties style:font-name %string; #IMPLIED> 126<!ATTLIST style:properties fo:font-family %string; #IMPLIED> 127<!ATTLIST style:properties style:font-family-generic %fontFamilyGeneric; 128 #IMPLIED> 129<!ATTLIST style:properties style:font-style-name %string; #IMPLIED> 130<!ATTLIST style:properties style:font-pitch %fontPitch; #IMPLIED> 131<!ATTLIST style:properties style:font-charset %textEncoding; #IMPLIED> 132<!ATTLIST style:properties style:font-name-asian %string; #IMPLIED> 133<!ATTLIST style:properties style:font-family-asian %string; #IMPLIED> 134<!ATTLIST style:properties style:font-family-generic-asian %fontFamilyGeneric; 135 #IMPLIED> 136<!ATTLIST style:properties style:font-style-name-asian %string; #IMPLIED> 137<!ATTLIST style:properties style:font-pitch-asian %fontPitch; #IMPLIED> 138<!ATTLIST style:properties style:font-charset-asian %textEncoding; #IMPLIED> 139<!ATTLIST style:properties style:font-name-complex %string; #IMPLIED> 140<!ATTLIST style:properties style:font-family-complex %string; #IMPLIED> 141<!ATTLIST style:properties style:font-family-generic-complex %fontFamilyGeneric; 142 #IMPLIED> 143<!ATTLIST style:properties style:font-style-name-complex %string; #IMPLIED> 144<!ATTLIST style:properties style:font-pitch-complex %fontPitch; #IMPLIED> 145<!ATTLIST style:properties style:font-charset-complex %textEncoding; #IMPLIED> 146 147<!ATTLIST style:properties fo:font-size %positiveLengthOrPercentage; #IMPLIED> 148<!ATTLIST style:properties style:font-size-rel %length; #IMPLIED> 149<!ATTLIST style:properties style:font-size-asian %positiveLengthOrPercentage; #IMPLIED> 150<!ATTLIST style:properties style:font-size-rel-asian %length; #IMPLIED> 151<!ATTLIST style:properties style:font-size-complex %positiveLengthOrPercentage; #IMPLIED> 152<!ATTLIST style:properties style:font-size-rel-complex %length; #IMPLIED> 153<!ENTITY % normalOrLength "CDATA"> 154<!ATTLIST style:properties fo:letter-spacing %normalOrLength; #IMPLIED> 155<!ATTLIST style:properties fo:language %languageOnly; #IMPLIED> 156<!ATTLIST style:properties style:language-asian %languageOnly; #IMPLIED> 157<!ATTLIST style:properties style:language-complex %languageOnly; #IMPLIED> 158<!ATTLIST style:properties fo:country %country; #IMPLIED> 159<!ATTLIST style:properties style:country-asian %country; #IMPLIED> 160<!ATTLIST style:properties style:country-complex %country; #IMPLIED> 161<!ENTITY % fontStyle "(normal|italic|oblique)"> 162<!ATTLIST style:properties fo:font-style %fontStyle; #IMPLIED> 163<!ATTLIST style:properties style:font-style-asian %fontStyle; #IMPLIED> 164<!ATTLIST style:properties style:font-style-complex %fontStyle; #IMPLIED> 165<!ENTITY % fontRelief "(none|embossed|engraved)"> 166<!ATTLIST style:properties style:font-relief %fontRelief; #IMPLIED> 167<!ATTLIST style:properties fo:text-shadow CDATA #IMPLIED> 168<!ATTLIST style:properties style:text-underline 169 (none|single|double|dotted|dash|long-dash|dot-dash| 170 dot-dot-dash|wave|bold|bold-dotted|bold-dash| 171 bold-long-dash|bold-dot-dash|bold-dot-dot-dash| 172 bold-wave|double-wave|small-wave) #IMPLIED> 173<!ATTLIST style:properties style:text-autospace (none | ideograph-alpha) #IMPLIED> 174<!ATTLIST style:properties style:punctuation-wrap (simple | hanging) #IMPLIED> 175<!ATTLIST style:properties style:line-break (normal | strict) #IMPLIED> 176<!ENTITY % fontColorOrColor "CDATA"> 177<!ATTLIST style:properties style:text-underline-color %fontColorOrColor; 178 #IMPLIED> 179<!ATTLIST style:properties fo:font-weight CDATA #IMPLIED> 180<!ATTLIST style:properties style:font-weight-asian CDATA #IMPLIED> 181<!ATTLIST style:properties style:font-weight-complex CDATA #IMPLIED> 182<!ATTLIST style:properties fo:score-spaces %boolean; #IMPLIED> 183<!ATTLIST style:properties style:letter-kerning %boolean; #IMPLIED> 184<!ATTLIST style:properties style:text-blinking %boolean; #IMPLIED> 185<!ATTLIST style:properties style:text-background-color %transparentOrColor; 186 #IMPLIED> 187 188<!ATTLIST style:properties style:text-combine (none|letters|lines) #IMPLIED> 189<!ATTLIST style:properties style:text-combine-start-char %character; #IMPLIED> 190<!ATTLIST style:properties style:text-combine-end-char %character; #IMPLIED> 191<!ATTLIST style:properties style:text-emphasize CDATA #IMPLIED> 192<!ATTLIST style:properties style:text-scale %percentage; #IMPLIED> 193<!ATTLIST style:properties style:text-rotation-angle %integer; #IMPLIED> 194<!ATTLIST style:properties style:text-rotation-scale (fixed|line-height) #IMPLIED> 195 196<!-- paragraph properties --> 197<!ENTITY % nonNegativeLengthOrPercentageOrNormal "CDATA"> 198<!ATTLIST style:properties fo:line-height 199 %nonNegativeLengthOrPercentageOrNormal; #IMPLIED> 200<!ATTLIST style:properties style:line-height-at-least %nonNegativeLength; 201 #IMPLIED> 202<!ATTLIST style:properties style:line-spacing %length; #IMPLIED> 203<!ATTLIST style:properties fo:text-align (start|end|center|justify) #IMPLIED> 204<!ATTLIST style:properties fo:text-align-last (start|center|justify) #IMPLIED> 205<!ATTLIST style:properties style:text-align-source (fix|value-type) #IMPLIED> 206<!ATTLIST style:properties style:justify-single-word %boolean; #IMPLIED> 207<!ATTLIST style:properties style:break-inside (auto|avoid) #IMPLIED> 208<!ATTLIST style:properties fo:widows %nonNegativeInteger; #IMPLIED> 209<!ATTLIST style:properties fo:orphans %nonNegativeInteger; #IMPLIED> 210 211<!ATTLIST style:properties fo:hyphenate %boolean; #IMPLIED> 212<!ATTLIST style:properties fo:hyphenate-keep (none|page) #IMPLIED> 213<!ATTLIST style:properties fo:hyphenation-remain-char-count %positiveInteger; 214 #IMPLIED> 215<!ATTLIST style:properties fo:hyphenation-push-char-count %positiveInteger; 216 #IMPLIED> 217<!ATTLIST style:properties fo:hyphenation-ladder-count 218 %noLimitOrPositiveInteger; #IMPLIED> 219<!ATTLIST style:properties style:page-number %positiveInteger; #IMPLIED> 220 221<!ELEMENT style:tab-stops (style:tab-stop)*> 222<!ELEMENT style:tab-stop EMPTY> 223<!ATTLIST style:tab-stop style:position %nonNegativeLength; #REQUIRED> 224<!ATTLIST style:tab-stop style:type (left|center|right|char|default) "left"> 225<!ATTLIST style:tab-stop style:char %character; #IMPLIED> 226<!ATTLIST style:tab-stop style:leader-char %character; " "> 227 228<!ELEMENT style:drop-cap EMPTY> 229<!ENTITY % wordOrPositiveInteger "CDATA"> 230<!ATTLIST style:drop-cap style:length %wordOrPositiveInteger; "1"> 231<!ATTLIST style:drop-cap style:lines %positiveInteger; "1"> 232<!ATTLIST style:drop-cap style:distance %length; "0cm"> 233<!ATTLIST style:drop-cap style:style-name %styleName; #IMPLIED> 234 235<!ATTLIST style:properties style:register-true %boolean; #IMPLIED> 236<!ATTLIST style:properties style:register-truth-ref-style-name %styleName; #IMPLIED> 237<!ATTLIST style:properties fo:margin-left %positiveLengthOrPercentage; #IMPLIED> 238<!ATTLIST style:properties fo:margin-right %positiveLengthOrPercentage; 239 #IMPLIED> 240<!ATTLIST style:properties fo:text-indent %lengthOrPercentage; #IMPLIED> 241<!ATTLIST style:properties style:auto-text-indent %boolean; #IMPLIED> 242<!ATTLIST style:properties fo:margin-top %positiveLengthOrPercentage; #IMPLIED> 243<!ATTLIST style:properties fo:margin-bottom %positiveLengthOrPercentage; #IMPLIED> 244<!ATTLIST style:properties fo:break-before (auto|column|page) #IMPLIED> 245<!ATTLIST style:properties fo:break-after (auto|column|page) #IMPLIED> 246<!ATTLIST style:properties fo:background-color %transparentOrColor; #IMPLIED> 247 248<!ELEMENT style:background-image (office:binary-data?)> 249<!ATTLIST style:background-image xlink:type (simple) #IMPLIED> 250<!ATTLIST style:background-image xlink:href %uriReference; #IMPLIED> 251<!ATTLIST style:background-image xlink:show (embed) #IMPLIED> 252<!ATTLIST style:background-image xlink:actuate (onLoad) #IMPLIED> 253<!ATTLIST style:background-image style:repeat (no-repeat|repeat|stretch) 254 "repeat"> 255<!ATTLIST style:background-image style:position CDATA "center"> 256<!ATTLIST style:background-image style:filter-name %string; #IMPLIED> 257 258<!ELEMENT style:symbol-image (office:binary-data?)> 259<!ATTLIST style:symbol-image xlink:type (simple) #IMPLIED> 260<!ATTLIST style:symbol-image xlink:href %uriReference; #IMPLIED> 261<!ATTLIST style:symbol-image xlink:show (embed) #IMPLIED> 262<!ATTLIST style:symbol-image xlink:actuate (onLoad) #IMPLIED> 263 264<!ATTLIST style:properties fo:border CDATA #IMPLIED> 265<!ATTLIST style:properties fo:border-top CDATA #IMPLIED> 266<!ATTLIST style:properties fo:border-bottom CDATA #IMPLIED> 267<!ATTLIST style:properties fo:border-left CDATA #IMPLIED> 268<!ATTLIST style:properties fo:border-right CDATA #IMPLIED> 269<!ATTLIST style:properties style:border-line-width CDATA #IMPLIED> 270<!ATTLIST style:properties style:border-line-width-top CDATA #IMPLIED> 271<!ATTLIST style:properties style:border-line-width-bottom CDATA #IMPLIED> 272<!ATTLIST style:properties style:border-line-width-left CDATA #IMPLIED> 273<!ATTLIST style:properties style:border-line-width-right CDATA #IMPLIED> 274<!ATTLIST style:properties fo:padding %nonNegativeLength; #IMPLIED> 275<!ATTLIST style:properties fo:padding-top %nonNegativeLength; #IMPLIED> 276<!ATTLIST style:properties fo:padding-bottom %nonNegativeLength; #IMPLIED> 277<!ATTLIST style:properties fo:padding-left %nonNegativeLength; #IMPLIED> 278<!ATTLIST style:properties fo:padding-right %nonNegativeLength; #IMPLIED> 279<!ATTLIST style:properties style:shadow CDATA #IMPLIED> 280<!ATTLIST style:properties fo:keep-with-next %boolean; #IMPLIED> 281 282<!ATTLIST style:properties text:number-lines %boolean; "false"> 283<!ATTLIST style:properties text:line-number %nonNegativeInteger; #IMPLIED> 284 285<!ATTLIST style:properties style:decimal-places %nonNegativeInteger; #IMPLIED> 286<!ATTLIST style:properties style:tab-stop-distance %nonNegativeLength; #IMPLIED> 287 288<!-- table properties --> 289<!ATTLIST style:properties style:width %positiveLength; #IMPLIED> 290<!ATTLIST style:properties style:rel-width %percentage; #IMPLIED> 291<!ATTLIST style:properties style:may-break-between-rows %boolean; #IMPLIED> 292<!ATTLIST style:properties table:page-style-name %styleName; #IMPLIED> 293<!ATTLIST style:properties table:display %boolean; #IMPLIED> 294 295<!-- table column properties --> 296<!ATTLIST style:properties style:column-width %positiveLength; #IMPLIED> 297<!ENTITY % relWidth "CDATA"> 298<!ATTLIST style:properties style:rel-column-width %relWidth; #IMPLIED> 299<!ATTLIST style:properties style:use-optimal-column-width %boolean; #IMPLIED> 300 301<!-- table row properties --> 302<!ATTLIST style:properties style:row-height %positiveLength; #IMPLIED> 303<!ATTLIST style:properties style:min-row-height %nonNegativeLength; #IMPLIED> 304<!ATTLIST style:properties style:use-optimal-row-height %boolean; #IMPLIED> 305 306<!-- table cell properties --> 307<!ATTLIST style:properties 308 table:align (left | center | right | margins) #IMPLIED 309 table:border-model (collapsing | separating) #IMPLIED 310 fo:vertical-align (top | middle | bottom | automatic) #IMPLIED 311 fo:direction (ltr | ttb) #IMPLIED 312 style:rotation-angle %nonNegativeInteger; #IMPLIED 313 style:rotation-align (none | bottom | top | center) #IMPLIED 314 style:cell-protect CDATA #IMPLIED 315 fo:wrap-option (no-wrap | wrap) #IMPLIED 316> 317<!ELEMENT style:columns (style:column-sep?,style:column*)> 318<!ATTLIST style:columns fo:column-count %nonNegativeInteger; #IMPLIED> 319<!ATTLIST style:columns fo:column-gap %positiveLength; #IMPLIED> 320 321<!ELEMENT style:column EMPTY> 322<!ATTLIST style:column style:rel-width CDATA #IMPLIED> 323<!ATTLIST style:column fo:margin-left %positiveLength; #IMPLIED> 324<!ATTLIST style:column fo:margin-right %positiveLength; #IMPLIED> 325 326<!ELEMENT style:column-sep EMPTY> 327<!ATTLIST style:column-sep style:style (none|solid|dotted|dashed|dot-dashed) 328 "solid"> 329<!ATTLIST style:column-sep style:width %length; #REQUIRED> 330<!ATTLIST style:column-sep style:height %percentage; "100%"> 331<!ATTLIST style:column-sep style:vertical-align (top|middle|bottom) "top"> 332<!ATTLIST style:column-sep style:color %color; "#000000"> 333 334<!-- page master properties --> 335<!ELEMENT style:page-master (style:properties?, style:header-style?, style:footer-style?)> 336<!ATTLIST style:page-master style:name %styleName; #REQUIRED> 337<!ATTLIST style:page-master style:page-usage (all|left|right|mirrored) "all"> 338 339<!ELEMENT style:header-style (style:properties?)> 340<!ELEMENT style:footer-style (style:properties?)> 341 342<!ATTLIST style:properties fo:page-width %length; #IMPLIED> 343<!ATTLIST style:properties fo:page-height %length; #IMPLIED> 344<!ATTLIST style:properties style:paper-tray-number %positiveNumberOrDefault; #IMPLIED> 345<!ATTLIST style:properties style:print-orientation (portrait|landscape) #IMPLIED> 346<!ATTLIST style:properties style:print CDATA #IMPLIED> 347<!ATTLIST style:properties style:print-page-order (ttb|ltr) #IMPLIED> 348<!ATTLIST style:properties style:first-page-number %positiveInteger; #IMPLIED> 349<!ATTLIST style:properties style:scale-to %percentage; #IMPLIED> 350<!ATTLIST style:properties style:scale-to-pages %positiveInteger; #IMPLIED> 351<!ATTLIST style:properties style:table-centering (horizontal | vertical | both | none) #IMPLIED> 352 353<!ATTLIST style:properties style:footnote-max-height %lengthOrNoLimit; #IMPLIED> 354<!ATTLIST style:properties style:vertical-align (top|bottom|middle|basline|auto) #IMPLIED> 355 356<!ELEMENT style:footnote-sep EMPTY> 357<!ATTLIST style:footnote-sep style:width %length; #IMPLIED> 358<!ATTLIST style:footnote-sep style:rel-width %percentage; #IMPLIED> 359<!ATTLIST style:footnote-sep style:color %color; #IMPLIED> 360<!ATTLIST style:footnote-sep style:adjustment (left|center|right) "left"> 361<!ATTLIST style:footnote-sep style:distance-before-sep %length; #IMPLIED> 362<!ATTLIST style:footnote-sep style:distance-after-sep %length; #IMPLIED> 363 364<!-- master page --> 365<!ELEMENT style:master-page ( (style:header, style:header-left?)?, (style:footer, style:footer-left?)?, 366 office:forms?,style:style*, (%shapes;)*, presentation:notes? )> 367<!ATTLIST style:master-page style:name %styleName; #REQUIRED> 368<!ATTLIST style:master-page style:page-master-name %styleName; #REQUIRED> 369<!ATTLIST style:master-page style:next-style-name %styleName; #IMPLIED> 370<!ATTLIST style:master-page draw:style-name %styleName; #IMPLIED> 371 372<!-- handout master --> 373<!ELEMENT style:handout-master (%shapes;)*> 374<!ATTLIST style:handout-master presentation:presentation-page-layout-name %styleName; #IMPLIED> 375 376<!ENTITY % hd-ft-content "( text:p | (style:region-left?, style:region-center?, style:region-right?) )"> 377<!ELEMENT style:header %hd-ft-content;> 378<!ELEMENT style:footer %hd-ft-content;> 379<!ELEMENT style:header-left %hd-ft-content;> 380<!ATTLIST style:header-left style:display %boolean; "true"> 381<!ELEMENT style:footer-left %hd-ft-content;> 382<!ATTLIST style:footer-left style:display %boolean; "true"> 383 384<!ENTITY % region-content "(text:p*)"> 385<!ELEMENT style:region-left %region-content;> 386<!ELEMENT style:region-center %region-content;> 387<!ELEMENT style:region-right %region-content;> 388