在 apache fop 中获取具有两个对齐方式的标头

发布于 2024-10-31 18:05:45 字数 424 浏览 2 评论 0原文

在 xsl:fo 中,我尝试创建一个包含公司名称和打印日期的标题。公司名称应左对齐,打印日期应右对齐。不知怎的,我无法让它发挥作用。

<fo:static-content flow-name="xsl-region-before">
  <fo:block text-align="start" position="absolute" top="0">
    initech
  </fo:block>
  <fo:block text-align="end" position="absolute" top="0">
    Printdate 11-04-2011
  </fo:block>           
</fo:static-content>

谁能给我一些关于这方面的提示。

In xsl:fo i'm trying to create a header that contains the company name and the print date. The company name should be aligned to the left and the print date should be aligned to the right. Somhow i can not get this to work.

<fo:static-content flow-name="xsl-region-before">
  <fo:block text-align="start" position="absolute" top="0">
    initech
  </fo:block>
  <fo:block text-align="end" position="absolute" top="0">
    Printdate 11-04-2011
  </fo:block>           
</fo:static-content>

Could anyone give me some tips on this one.

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

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

发布评论

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

评论(1

以为你会在 2024-11-07 18:05:45

这是一种方法:

<fo:static-content flow-name="xsl-region-before">
  <fo:block text-align-last="justify">
initech<fo:leader/>Printdate 11-04-2011
  </fo:block>           
</fo:static-content>

Here is one way to do it:

<fo:static-content flow-name="xsl-region-before">
  <fo:block text-align-last="justify">
initech<fo:leader/>Printdate 11-04-2011
  </fo:block>           
</fo:static-content>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文