<eastAsianLayout>
(East Asian Typography Settings)
This element specifies any East Asian typography settings which shall be applied to the contents of the run.
The specific typography settings represented by this element include the two lines in one and horizontal in vertical text options.
The two lines in one setting specifies that the characters in this run should be written out on a single line in the document by creating two sub-lines within the regular line, and laying out this text equally between those sub lines.
<w:r> <w:rPr> <w:eastAsianLayout w:id="1" w:combine="on" /> </w:rPr> <w:t>two lines in one</w:t> </w:r>
The resulting text would be displayed on two sub lines within the other text on this line, like this:
The horizontal in vertical setting specifies that characters in this run should be rendered with a 90 degree rotation to the left from all other contents of the line when displayed in the document, while keeping the text on the same line as all other text in the paragraph.
<w:r> <w:rPr> <w:eastAsianLayout w:id="2" w:vert="on" /> </w:rPr> <w:t>vertical</w:t> </w:r>
The resulting text would be displayed with a 90 degree rotation from the other text content. ]
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies whether the contents of the current run should be combined into one line using the two lines in one logic described above in the parent element. If this attribute is omitted, then this run shall not be displayed on two sub lines. <w:r> <w:rPr> <w:eastAsianLayout w:id="1" w:combine="on" /> </w:rPr> <w:t>two lines in one</w:t> </w:r> The resulting text would be displayed on two sub lines within the other text on this line. ] The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies that the two lines in one text should be enclosed within a pair of brackets when displayed. This attribute's values determine the bracket style to put around combined text. If this attribute is not specified, then no brackets shall be placed around this content when displayed in the document. If the <w:r> <w:rPr> <w:eastAsianLayout w:id="1" w:combine="on" w:combineBrackets="curly"/> </w:rPr> <w:t>two lines in one</w:t> </w:r> The resulting text would be displayed on two sub lines within the other text on this line and enclosed within curly brackets when displayed. ] The possible values for this attribute are defined by the ST_CombineBrackets simple type (§2.18.13). |
|
Specifies a unique ID which shall b used to link multiple runs containing This means that multiple runs which are broken apart due to differences in formatting can be identified as belonging to the same grouping in terms of <w:r> <w:rPr> <w:asianLayout w:id="-1552701694" w:combine="lines" w:combineBrackets="curly" /> </w:rPr> <w:t>two</w:t> </w:r> <w:r> <w:rPr> <w:u w:val="single" w:color="4F81BD" w:themeColor="accent1" /> <w:asianLayout w:id="-1552701694" w:combine="lines" w:combineBrackets="curly" /> </w:rPr> <w:t>lines in</w:t> </w:r> <w:r> <w:rPr> <w:asianLayout w:id="-1552701694" w:combine="lines" w:combineBrackets="curly" /> </w:rPr> <w:t>one</w:t> </w:r> Although there are three runs of content, all three regions shall be combined into a single two lines in one region based on the identical value used in the The possible values for this attribute are defined by the ST_DecimalNumber simple type (§2.18.16). |
|
Specifies that characters in this run should be rendered with a 270 degree rotation to the left from all other contents of the line when displayed in the document as described above. If this attribute is omitted, then the contents of this run shall not be rotated with respect to the normal text flow. <w:r> <w:rPr> <w:eastAsianLayout w:id="2" w:vert="on" /> </w:rPr> <w:t>vertical</w:t> </w:r> The resulting text would be displayed with a 270 degree rotation from the other text content. ] The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
|
Specifies whether the rotated text shall be compressed at display time in order to ensure that it fits into the existing line height without increasing the overall height of the line. If the <w:r> <w:rPr> <w:eastAsianLayout w:id="2" w:vert="true" vertCompress="true" /> </w:rPr> <w:t>vertical</w:t> </w:r> The resulting text would be compressed in order to fit the height of the line as defined by all non-compressed characters. ] The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_EastAsianLayout">
<attribute name="id" type="ST_DecimalNumber" use="optional"/>
<attribute name="combine" type="ST_OnOff" use="optional"/>
<attribute name="combineBrackets" type="ST_CombineBrackets" use="optional"/>
<attribute name="vert" type="ST_OnOff" use="optional"/>
<attribute name="vertCompress" type="ST_OnOff" use="optional"/>
</complexType>