使用 Ruby PDF::Writer 或 Ruport 显示数学幂?
有没有一种简单的方法可以在使用 Ruby PDF::Writer 库生成的 PDF 中显示权力? 我意识到我可以打印比基数稍高的指数,但是我想也许有一些更简单的方法可以做到这一点......例如某种标记。
基本上,我想干净地显示 x**-2。
提前致谢!
Is there an easy way to display powers in PDF generated using the Ruby PDF::Writer library? I realize that I can just print the exponent a bit higher than the base number, however I thought maybe there is some easier way to do this... such as a markup tag of some sort.
Basically, I want to cleanly display x**-2.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我写了一个快速算法来完成我需要做的事情。 希望它也对你有用。 唯一的要求是您使用 PDF::Writer。 下面的方法是使用 PDF::Writer 和 Ruport。 但是,如果您不使用 Ruport,则唯一需要更改的是“draw_text”方法。 将其替换为 PDF::Writer“文本”方法。
这是一个调用示例:
如果您对此方法有任何疑问或者您找到了我原来问题的答案,请告诉我。
-J.P
I wrote up a quick algorithm to do what I need to do. Hopefully it will work for you as well. The only requirement is that you use PDF::Writer. The method below is using PDF::Writer and Ruport. However, if you aren't using Ruport, the only thing you need to change is the "draw_text" method. Substitute it with the PDF::Writer "text" method.
Here is an example call:
Let me know if you have any trouble with this method or you find an answer to my original question.
-JP