从 Lua 设置 PDF 轮廓

从 Lua 设置 PDF 轮廓

在 LuaTeX 的最新版本中,可以使用 从 TeX 端设置 PDF 轮廓层次结构\pdfextension outline;例如:

\pdfextension outline goto page \the\c@page {} count 1 {Chapter 1}
\pdfextension outline attr{/F 1} goto name{label} {Section 1.1}

我想从 Lua 中执行此操作。例如:

pdf.setoutlines( whatever )

…但是没有这样的界面。

我曾考虑过使用 来处理原始 PDF 对象pdf.immediateobj,但我不知道该怎么做。如果可以通过这种方式实现,您能否提供一个示例层次结构?

答案1

是的,您必须写出原始 pdf 对象。这是一个最小示例,包含两个书签页面。

该文件outlines-example.tex(使用纯文本进行编译luatex):

This is the first page.
\vfil\break
This is the second page.
\directlua{require('outline-examples')}
\bye

文件outlines-example.lua

-- Reserve all object numbers beforehand
local first, second, outlines =
  pdf.reserveobj(), pdf.reserveobj(), pdf.reserveobj()

-- Write out the bookmarks
pdf.immediateobj(first, string.format(
  '<< /Title (First page) /Parent %d 0 R /Next %d 0 R /Dest [0 /XYZ] >>',
    outlines, second))
pdf.immediateobj(second, string.format(
  '<< /Title (Second page) /Parent %d 0 R /Prev %d 0 R /Dest [1 /XYZ] >>',
    outlines, first))

-- Write out the outline dictionary
pdf.immediateobj(outlines, string.format(
  '<< /Type/Outlines /First %d 0 R /Last %d 0 R /Count 2 >>',
    first, second))

-- Add the outline dictionary to the document catalog
pdf.setcatalog(string.format(
  '%s /Outlines %d 0 R',
    pdf.getcatalog() or '', outlines))

相关内容