Ask Your Question

Revision history [back]

Typesetting for objects like derivatives, integrals and limits is not yet implemented in Sage, so the icing isn't available. You can however do something manually like this,

show( "f(2)=", f(2) )
show( "f'(x)=", diff(f(x),x) )
show( "∫f(x)dx=", integrate(f(x),x) )

which gives the sort of output you want.

Typesetting for objects like derivatives, integrals and limits is not yet fully implemented in Sage, so the icing isn't available. You can however do something manually like this,

show( "f(2)=", f(2) )
show( "f'(x)=", diff(f(x),x) )
show( "∫f(x)dx=", integrate(f(x),x) )

which gives the sort of output you want.