使用方形根符号下打印数字

时间:2015-11-28 16:48:02

标签: java android symbols quadratic square-root

我必须以下面的格式打印我的解决方案的输出(二次方程式): Quadratic Equation Format

我有数值,可以使用"平方根:\ u221A"打印平方根符号。

但是,我不知道如何插入带有根符号的数字以及带下划线的分割符号,如上图所示。

请为此建议任何可行的方法或解决方法。谢谢!

2 个答案:

答案 0 :(得分:1)

Android中的方程式没有本机支持。您可以在 WebView 中使用 MathJax https://www.mathjax.org/),或者可能更好的选项是jqMath,请参阅此处:

<强> How to practically display math formula in Android

答案 1 :(得分:1)

最后使用MathView开始工作。

这是一个基于Android WebView的自定义视图库,使用MathJax显示数学公式。

该设置也非常直接,专为Android应用程序开发。

<io.github.kexanie.library.MathView
    android:id="@+id/formula_one"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    auto:text="When \\(a \\ne 0\\), there are two solutions to \\(ax^2 + bx + c = 0\\)
            and they are $$x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}.$$"
    >
</io.github.kexanie.library.MathView>