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

Online Help

All Products    Maple    MapleSim


Magma

  

Format

  

format a magma as text for inclusion in a document

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

Format( m )

Format( m, options )

Parameters

m

-

a magma to format

options

-

zero or more options of the form format = fmt or labels = lbls.

Options

• 

The format option is used to specify the output format desired. Its value may be chosen from among those shown in the following table.

  text

plain text, the default

  latex

formatted as a LaTeX table

  html

formatted as an HTML table

  mathml

formatted as a MathML table

  wiki

formatted as a MediaWiki table

• 

Use the labels option to specify names for the members of the magma other than small integers. The value of the labels option must be either a string, or a list of strings.  If a string is provided, then its length must be equal to the order of the magma, and the individual characters in the string will be used as element names, in the order given.  If a list of strings is provided, then the number of its members must be equal to the order of the magma, and each string in the list will be used as element names, in the order given. You can use markup within these strings consistent with the output format chosen.  For example, a list of labels of the form [ "$a$", "$b$", "$c$" ] may be given for LaTeX output.

Description

• 

The Format command formats a magma (as an operation table) to a string in any one of several supported formats.  This is meant to be a tool for including small magmas in documents such as papers, email or webpages.

• 

The formatted magma is returned as a string of text formatted using the selected format. You can use the printf command (with the %s conversion specifier) to print the string.  Alternatively, the returned text may be written to a file.

Examples

withMagma:

Create a small magma  with five members to be formatted.

N5:

mRandomMagmaN

m4212545223221314112453235

(1)

The default is to format the magma as plain text.

printf%s\n,Formatm

 4 2 1 2 5
 4 5 2 2 3
 2 2 1 3 1
 4 1 1 2 4
 5 3 2 3 5

printf%s\n,Formatm,format=text

 4 2 1 2 5
 4 5 2 2 3
 2 2 1 3 1
 4 1 1 2 4
 5 3 2 3 5

Use LaTeX to include the formatted magma in a paper or book.

printf%s\n,Formatm,format=latex

\begin{smallmatrix}4&2&1&2&5\\ 4&5&2&2&3\\ 2&2&1&3&1\\ 4&1&1&2&4\\ 5&3&2&3&5
\end{smallmatrix}

Use HTML, MathML or MediaWiki for inclusion in a webpage.

printf%s\n,Formatm,format=html

<table cols='5'>
<tr><td>4</td><td>2</td><td>1</td><td>2</td><td>5</td></tr>
<tr><td>4</td><td>5</td><td>2</td><td>2</td><td>3</td></tr>
<tr><td>2</td><td>2</td><td>1</td><td>3</td><td>1</td></tr>
<tr><td>4</td><td>1</td><td>1</td><td>2</td><td>4</td></tr>
<tr><td>5</td><td>3</td><td>2</td><td>3</td><td>5</td></tr>
</table>

printf%s\n&comma;Formatm&comma;format=mathml

<matrix><matrixrow><mn>4</mn><mn>2</mn><mn>1</mn><mn>2</mn><mn>5</mn></matrixrow><matrixrow><mn>4</mn><mn>5</mn><mn>2</mn><mn>2</mn><mn>3</mn></matrixrow><matrixrow><mn>2</mn><mn>2</mn><mn>1</mn><mn>3</mn><mn>1</mn></matrixrow><matrixrow><mn>4</mn><mn>1</mn><mn>1</mn><mn>2</mn><mn>4</mn></matrixrow><matrixrow><mn>5</mn><mn>3</mn><mn>2</mn><mn>3</mn><mn>5</mn></matrixrow></matrix>

printf%s\n&comma;Formatm&comma;format=wiki

{| border="1"
|-
|4 || 2 || 1 || 2 || 5
|-
|4 || 5 || 2 || 2 || 3
|-
|2 || 2 || 1 || 3 || 1
|-
|4 || 1 || 1 || 2 || 4
|-
|5 || 3 || 2 || 3 || 5
|}

Display the magma using letters instead of small integers for its elements.

withStringTools&colon;

printf%s\n&comma;Formatm&comma;labels=Ιa..z1..N

 d b a b e
 d e b b c
 b b a c a
 d a a b d
 e c b c e

printf%s\n&comma;Formatm&comma;format=latex&comma;labels=mapFence&comma;ExplodeΙa..z1..N&comma;$&comma;$

\begin{smallmatrix}$d$&$b$&$a$&$b$&$e$\\$d$&$e$&$b$&$b$&$c$\\$b$&$b$&$a$&$c$&$a$\\$d$&$a$&$a$&$b$&$d$\\$e$&$c$&$b$&$c$&$e$
\end{smallmatrix}

Compatibility

• 

The Magma[Format] command was introduced in Maple 15.

• 

For more information on Maple 15 changes, see Updates in Maple 15.

See Also

Magma

RandomMagma