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