Wordprocessing 文本
结构
运行(run)定义具有公共属性集的文本的非块区域。用 <w:r> 元素指定。运行的属性由 <w:rPr> 元素指定,该元素是 <w:r> 的第一个元素。运行最通常包含文本元素 <w:t>(其中包含段落的实际文字文本),但是它们也可能包含特殊内容,例如符号,制表符,连字符,回车符,图形,分隔符和脚注引用。请参阅 textSpecialContent(特殊内容)。
<w:r>
<w:rPr>
<w:b/>
<w:i/>
</w:rPr>
<w:t>I feel that there is much to be said for the Celtic belief that the souls of those whom we have lost are held captive in some inferior being...</w:t>
</w:r>
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference §§ 17.3.2, 17.3.3 and 17.3.2.25.
Word 2007 示例:
元素:
<w:r> 元素可以包含大量元素。最常用的显示如下。
br
指定换行符。请参阅 textSpecialContent(文本-特殊内容)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.1.
cr
指定回车。请参阅 textSpecialContent(文本-特殊内容)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.4.
drawing
指定在运行中放置一个图形对象(即,DrawingML 的图形对象,例如 图解,图表或图片)。使用 WordProcessingL 绘图语法指定文档中 DrawingML 对象的布局(即其在页面上的位置)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.9.
noBreakHyphen
指定不间断的连字符。请参阅 textSpecialContent(文本-特殊内容)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.18.
rPr
指定运行的属性。请参见 styleCharStyles(样式-字符样式)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.2.28.
softHyphen
指定软连字符(表示除非在行尾断开单词时使用,否则不显示。)。请参阅 textSpecialContent(文本-特殊内容)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.29.
sym
指定特殊字符或符号。请参阅 textSpecialContent-symbol(文本-符号)。
t
指定将在运行中显示的文字文本。文档中的几乎所有文本都包含在 t 元素中,但域代码中的文本除外。
XML 名称空间中有一个属性(xml:space),可用于指定如何处理 t 元素中的空间。值可以是 preserve 和 default。如果需要保留运行中的空白,则必须将此属性设置为 preserve ,这一点很重要。请参阅 第2.10节中的XML 1.0规范。
<w:r>
<w:t>This is another</w:t>
</w:r>
<w:r>
<w:br/>
<w:t xml:space="preserve"> simple sentence.</w:t>
</w:r>
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.31.
tab
指定制表符。请参阅 textSpecialContent(文本-特殊内容)。
参考文献:ECMA-376, 3rd Edition (June, 2011), Fundamentals and Markup Language Reference § 17.3.3.32.
相关的 Open Document Format (ODF)属性:
ODF 中文本的内容模型与 HTML 非常相似。字符数据位于段落内部,而没有像 OOXML 中那样进一步嵌套在运行和文本元素中。如果需要格式化段落中的文本,请使用 <text:span> 元素。
参考文献:Open Document Format for Office Applications Version 1.2 (May, 2011) § 5.1.3.
<text:p>The last word of this sentence is
<text:span text:style-name="emphasis">emphasized</text:span>.
</text:p>
相关的 HTML / CSS 属性:
没有相应的HTML属性。