[Table of Contents] [docx version]

PresentationML Reference Material - Table of Contents

embeddedFont (Embedded Font)

This element specifies an embedded font. Once specified, this font is available for use within the presentation. Within a font specification there can be regular, bold, italic and boldItalic versions of the font specified. The actual font data for each of these is referenced using a relationships file that contains links to all available fonts. This font data contains font information for each of the characters to be made available in each version of the font.

[Example: Consider the following embedded font.

<p:embeddedFont>

<p:font typeface="MyFont" pitchFamily="34" charset="0"/>

<p:regular r:id="rId2"/>

</p:embeddedFont>

end example]

[Note: Not all characters for a typeface must be stored. It is up to the generating application to determine which characters are to be stored in the corresponding font data files. end note]

Parent Elements

embeddedFontLst4.3.1.9)

 

Child Elements

Subclause

bold (Bold Embedded Font)

§4.3.1.1

boldItalic (Bold Italic Embedded Font)

§4.3.1.2

font (Embedded Font Name)

§4.3.1.10

italic (Italic Embedded Font)

§4.3.1.14

regular (Regular Embedded Font)

§4.3.1.27

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_EmbeddedFontListEntry">

   <sequence>

   <element name="font" type="a:CT_TextFont" minOccurs="1" maxOccurs="1"/>

   <element name="regular" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>

   <element name="bold" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>

   <element name="italic" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>

   <element name="boldItalic" type="CT_EmbeddedFontDataId" minOccurs="0" maxOccurs="1"/>

   </sequence>

</complexType>