Use Symbol For Typeset - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Typesetting

  

UseSymbolForTypeset

  

control use of operator symbols in typesetting

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

UseSymbolForTypeset(arg1, arg2, ...)

Parameters

argN

-

either of the form name = true/false or simply name representing a rule name

Description

• 

The UseSymbolForTypeset command allows for query and adjustment of one or more operator display rules in the Typesetting package.

• 

The return value is similar to that of interface, namely the value(s) of the parameter(s) being queried or set. In the case that the parameter(s) are being set, the value before the setting is applied is the one that is returned.

• 

The following table lists all rules, their standard display, their symbol display, and whether they are enabled by default.

Rule ID

Standard

Symbol (MathML)

Default

-------

--------

--------------

------

"Assignment"

:=

"≔"

true

"Type"

::

"∷"

true

"Plus/Minus"

&+-

"±"

TRUE

"Minus/Plus"

&-+

"∓"

TRUE

"Inline Procedure"

->

"↦"

true

"Concatenation"

||

"‖"

true

"Range"

..

"…"

false

"Function Composition"

@

"∘"

false

"Less Equal"

<=

"&le;"

true

"Greater Equal"

>=

"&ge;"

true

"Not Equal"

<>

"&ne;"

true

"Logical Not"

not

"&not;"

false

"Logical Not And"

nand

"&uarr;"

false

"Logical And"

and

"&and;"

false

"Logical Not Or"

nor

"&darr;"

false

"Logical Or"

or

"&or;"

false

"Logical Exclusive Or"

xor

"&veebar;"

false

"Logical Implies"

implies

"&Implies;"

true

"Logical Iff"

iff

"&iff;"

false

"Set Intersect"

intersect

"&cap;"

true

"Set Union"

union

"&cup;"

true

"Set Minus"

minus

"&bsol;"

true

"Set In"

in

"&in;"

true

"Subset"

subset

"&sube;"

true

"Angle Braces"

<,>

"&lang;","&rang;"

true

 

 

 

 

  

Note that the rules with a default of TRUE are enabled by default and cannot be disabled.

• 

As an example, setting the "Logical And" rule to true will cause logic operations containing and to display with the logical and symbol &Hat;.

• 

Note that all settings available via this command can be queried/changed via the interactive Typesetting Assistant. Options can be queried or changed in the Operators area of the interactive Typesetting Assistant.

Examples

withTypesetting&colon;

Query typeset symbol usage for logic operations

UseSymbolForTypesetLogical Not&comma;Logical And&comma;Logical Or&comma;Logical Exclusive Or&comma;Logical Implies

false,false,false,false,true

(1)

Change typeset symbol usage for logic operations and re-query

UseSymbolForTypesetLogical Not=true&comma;Logical And=true&comma;Logical Or=true&comma;Logical Exclusive Or=true

false,false,false,false

(2)

UseSymbolForTypesetLogical Not&comma;Logical And&comma;Logical Or&comma;Logical Exclusive Or&comma;Logical Implies

true,true,true,true,true

(3)

Typesetaandb

ab

(4)

UseSymbolForTypesetLogical And=false

true

(5)

Typesetaandb

aandb

(6)

See Also

Typesetting

Typesetting[RuleAssistant]