Reputation: 71
Every command I input in Maple it also attach Typesetting:-mparsed(...)
,like this:
solve(x^2-2*x+1 = 0, x)
->Typesetting:-mparsed(solve(x^2-2 x+1=0,x),solve(x^2-2 x+1=0,x); "_noterminate")
etc.
How to solve this issue?
Upvotes: 2
Views: 2093
Reputation: 7246
Make sure that you have the latest point-release update. For example, for Maple 2018, the latest is 2018.2.1 available here.
The problem is related to 2D Output, and in particular to "typesetting" of that. It may help for you to change from the default typesetting level of extended
to the (previous version's default) of standard
.
You can set that via the menus as a persistent preference, or you can set that programmatically for the current session.
Using the menubar, choose Tools -> Options -> Display and then toggle the Output display combo-box from Extended to Standard. Then close the preferences dialogue by clicking the button Apply Globally. Then close the Maple GUI, and relaunch.
To set it programmatically for the current session, you can issue the command,
interface(typesetting=standard):
And then try your examples once again.
Are you using an internationalized version of Maple, with a particular locale?
Or, perhaps you are using the Japanese version? In that case make sure you get the right point-release download, as there is one specifically for the Japanese version.
If you really want the typesetting=extended mode, and the latest point-release still has the problem, you could contact Maplesoft's customer support.
Upvotes: 1