Java 中的 jEuclid 帮助
我必须在 Java 应用程序中显示一些数学方程。我已经下载了jEuclid,但我不知道如何使用它,并且似乎无法找到任何好的教程。我必须以形式显示分数
(P+R*sqrt(D))/Q
目前我正在使用 jTextArea
,输出基本上是
P:数字,R:数字,D:数字,Q:数字
如何用 jEuclid 表示这个分数?在乳胶中我会这样做
\frac{...}{...}
,但如何用 jEuclid 做到这一点?
预先非常感谢您!
I have to display some math equations in Java application. I've downloaded jEuclid, but I have no idea how to use it and do not seem to be able to find any good tutorial. I have to display fractions in the form
(P+R*sqrt(D))/Q
At the moment I am using jTextArea
and the output is basically
P: num, R: num, D: num, Q: num
How can represent this fraction with jEuclid? In latex I would do
\frac{...}{...}
but how to do that with jEuclid?
Thank you very much in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是将 MathML 转换为图像的 Java 程序:
您可以使用此图像输出在您的应用程序中显示。
Here is Java program to transform MathML into image:
You can use this image output to display in your application.
据我了解(通过阅读网站),JEuclid 是一个将演示性 MathML 转换为图形的程序。因此,您必须使用 MathML 编写输入,可以是文本形式,也可以是一些 XML API,然后将其提供给 JEuclid。
对于您的示例,它看起来像这样(改编自 Wikipeda 中的示例):
这是 JEuclid MathViewer 中此 MathML 文档的屏幕截图:
As I understand (from reading the website), JEuclid is a program which converts presentional MathML to graphics. Thus you'll have to write your input in MathML, either in text form or with some XML API, and then feed this to JEuclid.
For your example, it would look like this (adapted from the example in Wikipeda):
Here is the screenshot of this MathML document in JEuclids MathViewer: