Question: Clearing all Typesetting effect

I set

Typesetting:-Settings(prime=x,'typesetprime'=true); #this says to use y'(x) instead of dy/dx    
Typesetting:-Suppress(y(x)); # this says to use y' and not y'(x)

So that  y(x) and diff(y(x),x) display as   y and y'  and this works.

But I am not able to clear this effect without doing restart. If I do 

Typesetting:-Unsuppress('all'); #clear all

It still display derivative as  y'(x)  instead of diff(y(x),x) as expected. So the Unsuppress('all') had only partial effect. 

How to completely remove all typestting effects so that it returns to how it was and without doing restart?

Worksheet below. Looked at help page, but it is still not clear. All what help page says is to use Unsuppress(all) and that is what I did. I am using typesetting level extended if it makes any difference. 

interface(version);

`Standard Worksheet Interface, Maple 2024.1, Windows 10, June 25 2024 Build ID 1835466`

restart;

ode:=diff(y(x),x$2)+diff(y(x),x)*y(x)+3*y(x)=sin(x);

diff(diff(y(x), x), x)+(diff(y(x), x))*y(x)+3*y(x) = sin(x)

Typesetting:-Settings(prime=x,'typesetprime'=true); #this says to use y'(x) instead of dy/dx    
Typesetting:-Suppress(y(x)); # this says to use y' and not y'(x)

x, false

ode

diff(diff(y(x), x), x)+(diff(y(x), x))*y(x)+3*y(x) = sin(x)

Typesetting:-Unsuppress('all'); #clear all

ode

diff(diff(y(x), x), x)+(diff(y(x), x))*y(x)+3*y(x) = sin(x)

Typesetting:-Unsuppress(y(x));

Warning, no depencency for function y has been declared => ignored

ode

 

Download how_to_clear_all_typesetting.mw

Please Wait...