如何通过 XSL FO 将小型大写字母应用于字符串
How to apply small-caps to a string via XSL FO
我正在尝试在 DITA-OT 中自定义 PDF2 插件。我想将小型大写字母应用于每章开头出现的字符串“Chapter”和章节编号。
到目前为止我做了什么
在我的自定义插件中,我修改了 static-content-attr.xsl 文件中的 __chapter__frontmatter__name__container
属性集以包含 <xsl:attribute name="font-variant">small-caps</xsl:attribute>
:
<xsl:attribute-set name="__chapter__frontmatter__name__container">
<xsl:attribute name="font-size">14pt</xsl:attribute>
<xsl:attribute name="font-weight">none</xsl:attribute>
<xsl:attribute name="border-before-style">none</xsl:attribute>
<xsl:attribute name="border-after-style">none</xsl:attribute>
<xsl:attribute name="border-before-width">0pt</xsl:attribute>
<xsl:attribute name="border-after-width">0pt</xsl:attribute>
<xsl:attribute name="padding-top">10pt</xsl:attribute>
<xsl:attribute name="font-variant">small-caps</xsl:attribute>
</xsl:attribute-set>
实际结果
small-caps 未应用于字符串。
预期结果
如何使字体变体在 XSL FO 中工作?
XML 框架 : DITA
发布引擎:DITA-OT 3.x
插件 : org.dita.pdf2, org.dita.pdf2.fop
您的语法是正确的(相反,它在结果树中也是正确的)。参见 https://www.w3.org/TR/xsl11/#font-variant
但是,FOP 不支持font-variant
。参见 https://xmlgraphics.apache.org/fop/compliance.html#fo-property-font-variant
如果您使用仅使用小型大写字母的字体,您也许可以获得小型大写字母。 https://xmlgraphics.apache.org/fop/2.6/fonts.html 的 FOP 字体页面指出 OpenType 包括小型大写字母,但随后又指出 FOP 不支持 OpenType 功能。
还有其他支持小型大写字母并与 DITA-OT 一起使用的格式化程序。
查看 FOP 合规性页面。
https://xmlgraphics.apache.org/fop/compliance.html
在此页面中,font-variant
被标记为不受支持。
§7.9.8 font-variant Basic no no no no no no
如果 font-variant
是您的基本要求,请考虑使用基于商业的格式化程序,例如 Antenna House Formatter。
https://www.antenna.co.jp/AHF/help/v70e/ahf-fo11.html
7.9.8 font-variant Basic yes This property is extended. ☞ font-variant
使用 font squirrel 或类似字体并找到具有完整变体 CAPS 的完整字体。 Latin Modern Roman 在这方面很常见,因为它也有非 CAP 斜体和粗体。它可能是免费的,但它可能会花费您 $s 并确保它已获得服务器许可。
例如参见https://www.fontsquirrel.com/fonts/Latin-Modern-Roman
添加此字体(或字体集),然后您可能需要自定义 DITA 以使用适当的字体输出一些 fo:inline。
我正在尝试在 DITA-OT 中自定义 PDF2 插件。我想将小型大写字母应用于每章开头出现的字符串“Chapter”和章节编号。
到目前为止我做了什么
在我的自定义插件中,我修改了 static-content-attr.xsl 文件中的 __chapter__frontmatter__name__container
属性集以包含 <xsl:attribute name="font-variant">small-caps</xsl:attribute>
:
<xsl:attribute-set name="__chapter__frontmatter__name__container">
<xsl:attribute name="font-size">14pt</xsl:attribute>
<xsl:attribute name="font-weight">none</xsl:attribute>
<xsl:attribute name="border-before-style">none</xsl:attribute>
<xsl:attribute name="border-after-style">none</xsl:attribute>
<xsl:attribute name="border-before-width">0pt</xsl:attribute>
<xsl:attribute name="border-after-width">0pt</xsl:attribute>
<xsl:attribute name="padding-top">10pt</xsl:attribute>
<xsl:attribute name="font-variant">small-caps</xsl:attribute>
</xsl:attribute-set>
实际结果
small-caps 未应用于字符串。
预期结果
如何使字体变体在 XSL FO 中工作?
XML 框架 : DITA
发布引擎:DITA-OT 3.x
插件 : org.dita.pdf2, org.dita.pdf2.fop
您的语法是正确的(相反,它在结果树中也是正确的)。参见 https://www.w3.org/TR/xsl11/#font-variant
但是,FOP 不支持font-variant
。参见 https://xmlgraphics.apache.org/fop/compliance.html#fo-property-font-variant
如果您使用仅使用小型大写字母的字体,您也许可以获得小型大写字母。 https://xmlgraphics.apache.org/fop/2.6/fonts.html 的 FOP 字体页面指出 OpenType 包括小型大写字母,但随后又指出 FOP 不支持 OpenType 功能。
还有其他支持小型大写字母并与 DITA-OT 一起使用的格式化程序。
查看 FOP 合规性页面。
https://xmlgraphics.apache.org/fop/compliance.html
在此页面中,font-variant
被标记为不受支持。
§7.9.8 font-variant Basic no no no no no no
如果 font-variant
是您的基本要求,请考虑使用基于商业的格式化程序,例如 Antenna House Formatter。
https://www.antenna.co.jp/AHF/help/v70e/ahf-fo11.html
7.9.8 font-variant Basic yes This property is extended. ☞ font-variant
使用 font squirrel 或类似字体并找到具有完整变体 CAPS 的完整字体。 Latin Modern Roman 在这方面很常见,因为它也有非 CAP 斜体和粗体。它可能是免费的,但它可能会花费您 $s 并确保它已获得服务器许可。
例如参见https://www.fontsquirrel.com/fonts/Latin-Modern-Roman
添加此字体(或字体集),然后您可能需要自定义 DITA 以使用适当的字体输出一些 fo:inline。