如何在 XSLT 中创建页码?

发布于 2024-10-15 02:01:56 字数 109 浏览 2 评论 0原文

我创建了 ac# 应用程序,它获取 xml 文件和 xslt 文件并创建 rtf 文档。这个 rtf 文档有页眉、页脚和页码,但我不知道如何在 xslt 中执行此操作。

有人有什么建议吗?

Ive created a c# application which gets an xml file and a xslt file and creates an rtf document. This rtf document is to have a header a footer and page numbers but I can't figure out how to do this in xslt.

Anyone have any advice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

(り薆情海 2024-10-22 02:01:56

如果您特别需要在 XSL 中使用某些内容,那么您可以在页脚区域 (xsl-region-after) 中添加一个块,并在该块中添加此代码片段。

  <fo:block text-align="right"><fo:page-number format="1"/><fo:page-number-citation format="1" ref-id="last-page"/></fo:block>

不要忘记在

<< 中包含以下代码片段:

fo:block id="last-page"/> just before the  </fo:page-sequence>

华泰

If you specifically need something to be used in XSL, then you can have a block in the footer region (xsl-region-after) and within that block you can have this snippet.

  <fo:block text-align="right"><fo:page-number format="1"/><fo:page-number-citation format="1" ref-id="last-page"/></fo:block>

not to forget to include the following snippet in the

<

fo:block id="last-page"/> just before the  </fo:page-sequence>

HTH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文