我正在为 MS Word 2007 编写样式表,我想使用 < xsl : template > 元素添加一个模板,该元素访问 Word 2007 文档的属性。(模板、TotalTime 等)有人可以为我提供启动此代码的代码吗?
问问题
384 次
1 回答
1
在样式表级别,声明您希望在 Word 2007 Flat OPC XML 中用于命名空间的命名空间前缀:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
xmlns:ep="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage"
xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
要删除 <Template> 扩展属性(从压缩文档中的 app.xml 中删除):
<xsl:template match="ep:Template" />
于 2012-06-07T23:04:38.410 回答