有没有办法添加与pdf文档中的文本不同的书签
使用 migradoc,我看到如何通过执行以下操作自动添加书签:
Paragraph p1 = document.LastSection.AddParagraph("Project Updates", "Heading2");
但是如果我想添加一个显示“更新”的书签,但段落标题中的文本显示“我的项目更新”,
这可能吗?
using migradoc, i see how you can add a bookmark automatically by doing this:
Paragraph p1 = document.LastSection.AddParagraph("Project Updates", "Heading2");
but what if i want to add a bookmark that says "Updates" but the text in the paragraph header says "My Project Updates"
is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我需要没有可见文本的书签时,我使用了一种技巧:字体大小非常小的白色文本(0.01)。
我还创建了一个样式“Heading1WithoutBookmark”,它是 Heading1 的克隆,但使用
此样式可以使书签指向仅包含图像的页面,而文本显示在下一页上。
它还允许在页面和书签中使用不同的文本。
When I needed bookmarks without visible text, I used a hack: white text with a very small font size (0.01).
I also created a style "Heading1WithoutBookmark" that is a clone of Heading1 but with
This allows me to have the bookmark point to a page that only contains an image while the text is showing on the following page.
It also allows to have different text on the page and in the bookmark.