DocumentTools[Canvas][Script]
SetMath
set the contents of a math canvas element
Calling Sequence
Parameters
Description
Examples
Compatibility
SetMath(script,ex,options)
script
-
DocumentTools:-Canvas:-Script object
ex
any math expression
keepannotation
(optional) truefalse; default is true
insert
(optional) truefalse; default is false
where
"below", "right", or "newgroup"
The SetMath command sets the contents of a math canvas element. By default it will set the contents of the active container, or, when the where option is specified, a container relative to the active container.
When the where option is set to "below", and the current active position is a group, the math will be set at the next position within the group. If something already occupies the next spot, it will be overwritten, unless the insert option is set to true, in which case the group contents will be bumped down to make room for the new expression. If the active position is at the end of a group, a new area will be added to the group regardless of the insert option setting. When the current position is a text area, a new group will be created below before inserting the math.
When the where option is set to "right", a new group will be created to the right of the active element, into which the given expression, ex will be inserted.
The where="newgroup" option is similar to where="below" except the math will always be inserted into a new group created below the current group or text area.
The keepannotation option controls whether or not an existing annotation in the current active component should be cleared when the math expression is set.
The insert setting is described above and only applies to the situation where math is being set "below" the active position of a group, and content already exists in the same group after that position. When insert = true, room will be made to insert the new expression, as opposed to insert = false, where the behavior is to overwrite the expression that follows.
Note: insert=true is not currently supported for script actions within a Maple worksheet, but does apply to Maple Learn deployed scripts.
A "canvas" is an interactive section of a Maple document created by the NewCanvas command, or a shared web-based Maple Learn document. See the Script command for a more complete description.
Note: The initial canvas in a Maple worksheet is created with a fixed size. Inserting math may exceed that size, which will result in an error. The ShowCanvas command has a size option that will let you create a size that will better fit your example.
One Command at a Time
In this example, we will insert a canvas and manually add math
with⁡DocumentTools:-Canvas:
cv≔NewCanvas⁡Blank Canvas:
ShowCanvas⁡cv
sc≔Script⁡:
make the title the active element
SetActive⁡sc,0:0
create a new group below
SetMath⁡sc,1,where=below
change the math in the active area
SetMath⁡sc,11
create a new group to the right
SetMath⁡sc,2,where=right
create a new row in the current group
SetMath⁡sc,3,where=below
SetMath⁡sc,4,where=newgroup
create a blank entry
SetMath⁡sc,,where=below
SetMath⁡sc,6,where=below
recreate the whole example with all of the script steps attached so that it can be played back in Maple Learn
cv2≔NewCanvas⁡SetMath Example,sc:
ShareCanvas⁡cv2
Loop Example
In this example, we will display the Fibonacci sequence up to the value specified in the canvas. This will be done using only 9 display areas, wrapping around to the beginning when the 9th box has been displayed.
cv≔NewCanvas⁡Fibonacci Sequence to: ,5000:
data≔GetMath⁡:
the starting point is the title text
foriwhilefib≔combinat:-fibonacci⁡i<data1:-mathdoifi<10thenSetMath⁡sc,fib,where=belowelseSetActive⁡sc,2,imod9;SetMath⁡sc,fibendif;Annotate⁡sc,ienddo
cv2≔NewCanvas⁡Fibonacci Sequence to ,5000,sc:
The DocumentTools[Canvas][Script][SetMath] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
Math
NewCanvas
Script
SetActive
SetText
Download Help Document