Question: Is parse in textplot not useful?

By the code

P := plot( [ sin(x)-x+(x^3)/3! ] ) :
L := plots[textplot]( [ 3 , 15 , sin(x)-x+(x^3)/3! ],  axes = none) :
plots[display]( P ,L, axes = normal )

I'd like to put the text sin(x)-x+(x^3)/3!  not  sin(x)-x+(x^3)/6   in the image.

I thought  that parse can do that

parse("sin(x)-x+(x^3)/3!")

But One use it in plots[textplot] , it is not useful!

P := plot( [ sin(x)-x+(x^3)/3! ] ) :
L := plots[textplot]( [ 3 , 15 , parse("sin(x)-x+(x^3)/3!") ],  axes = none) :
plots[display]( P ,L, axes = normal )

How to do? Thanks!

Please Wait...