我有一些数学公式。
p = (l + m + n) / (i+j*2)
注:这只是一个例子。真实的方程更加复杂,有多个变量参与方程。
我希望以交互式、丰富的 web 组件将这些公式显示为树型结构。
最初,屏幕应显示
p = x/y
with p, x and y as boxes. The user can click on the box labeled x which will "unfold" the box to expand and display
x = (l + m + n)
and so on.
由于这是基于J2EE的应用程序,我可以使用与J2EE兼容的任何RIA库。
有没有任何第三方RIA库可以帮助我呈现这些公式?