I am trying to display multiple integrals with the equation editor in my questions. If I use the name $eqn, for example, it does not put that in HTML format. It may leave it: x^2 +y^3. I have tried putting my variable into HTML in the algorithm but then it will not display at all. Any suggestions? I have avoided the editor as much as possible but it is impossible with definate integrals.
MathML[ExportPresentation]
Hi Linda,
To display your integral nicely you should use Maple's MathML package. For example:
$eqn_Display = maple("MathML[ExportPresentation](Int(x^2+y^3,x=0..1))"); will display the definite integral. Int is the inert form of int, which is the integration command in Maple.
Or $eqn_Display = maple("MathML[ExportPresentation](x^2+y^3)"); will display the integrand nicely and then use the equation editor to create your integral.
Jenna