我正在使用 ColdFusion 生成 PDF 并创建一个 DDX 文件,该文件将在完成后为该文件生成 TOC。我可以为 TOC 页面配置和格式化标题,但无法在任何地方找到有关如何更改实际生成的 TOC 字体的任何内容。
这是我的 DDX 文件代码:
<cfsavecontent variable="ddxFile"><?xml version="1.0" encoding="UTF-8"?>
<DDX xmlns="http://ns.adobe.com/DDX/1.0/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ns.adobe.com/DDX/1.0/ coldfusion_ddx.xsd">
<PDF result="Out1">
<PDF source="Title"/>
<TableOfContents>
<Header styleReference="TOCheaderStyle"/>
</TableOfContents>
<PDF source="Doc1"/>
</PDF>
<StyleProfile name="TOCheaderStyle">
<Header>
<Center>
<StyledText>
<p font-weight="bold" font="Arial">Table of Contents</p>
</StyledText>
</Center>
</Header>
</StyleProfile>
</DDX>
</cfsavecontent>
我一直在寻找大约一周的答案,但没有运气如何获得生成的目录文本的实际字体设置。
任何帮助将不胜感激!谢谢!