如何在 XSLT 中创建页码?
我创建了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您特别需要在 XSL 中使用某些内容,那么您可以在页脚区域 (xsl-region-after) 中添加一个块,并在该块中添加此代码片段。
不要忘记在
<< 中包含以下代码片段:
华泰
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.
not to forget to include the following snippet in the
<
HTH