在 apache fop 中获取具有两个对齐方式的标头
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种方法:
Here is one way to do it: