私は数学の数式を Android アプリに入れようとしているので、ユーザーは数式がどのように見えるか、つまり距離の数式を見ることができます。サードパーティのソフトウェアをインポートせずにこれを行う方法はありますか? それともそれが唯一の方法ですか?前もって感謝します。
2 に答える
ライブラリを使用できると判断した場合は、この質問で参照されているJLaTeXMathを見るか、ここに記載されているjqMathを試すことができます。
If you need to create equations dynamically based on user input, you are probably going to need a library.
You can get some formatting done in HTML and use Html.fromHtml
, but you will be limited. Mostly useful for sub and superscripts. For example,
Html.fromHtml("A<sup>2</sup>+B<sup>2</sup> = C<sup>2</sup>")
gives a rendering of the Pythagorean equation.
If you do not need to dynamically generate equations, but instead have a set of reference equations you want to be able to show unmodified, you can always prerender them as PNGs and display them as images. There are addons to LaTeX, and various online equation editors, such as this one, that will render the PNG for you.