<autoCaption>
(Single Automatic Captioning Setting)
This element specifies what type(s) of objects shall automatically labeled with captions (§2.15.1.17), and with which captions the specified objects shall be labeled as defined in the <caption>
element (§2.15.1.16).
This type of automatic captioning is specified using the following WordprocessingML fragment:
<w:captions> <w:caption w:name="Table" w:pos="below" w:chapNum="On" w:heading="2" w:numFmt="upperCase" w:sep="8212" /> <w:autoCaptions> <w:autoCaption w:name="wfwTable" w:caption="Table" /> </w:autoCaptions> </w:captions>
Here, the <autoCaption>
element specifies through the @name
attribute being set equal to wfwTable
that tables will automatically be labeled with the caption specified in the <caption>
element whose @name
attribute is equal to Table
, as the @caption
element's @caption
attribute has a value of Table
. ]
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies the caption defined in using the <w:captions> <w:caption w:name="table" w:pos="below" w:chapNum="1" w:heading="0" w:noLabel="1" w:numFmt="upperRoman" /> <w:autoCaptions> <w:autoCaption w:name="Paint.Picture" w:caption="table" /> </w:autoCaptions> </w:captions> The The possible values for this attribute are defined by the ST_String simple type (§2.18.89). |
|
Specifies a unique identifier which may be used to associate objects inserted into the document which are to be automatically labeled with a caption when inserted into the WordprocessingML document. <w:autoCaption w:name="wfwTables" w:caption="custom" /> The The possible values for this attribute are defined by the ST_String simple type (§2.18.89). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_AutoCaption">
<attribute name="name" type="ST_String" use="required"/>
<attribute name="caption" type="ST_String" use="required"/>
</complexType>