You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
704 B
46 lines
704 B
10 months ago
|
|
||
|
## Writers
|
||
|
### MathML
|
||
|
The name of the writer is `MathML`.
|
||
|
|
||
|
``` php
|
||
|
<?php
|
||
|
|
||
|
use PhpOffice\Math\Element;
|
||
|
use PhpOffice\Math\Math;
|
||
|
use PhpOffice\Math\Writer\MathML;
|
||
|
|
||
|
$math = new Math();
|
||
|
$math->add(new Element\Operator('+'));
|
||
|
|
||
|
$writer = new MathML();
|
||
|
$output = $writer->write($math);
|
||
|
```
|
||
|
|
||
|
### OfficeMathML
|
||
|
|
||
|
The name of the writer is `OfficeMathML`.
|
||
|
|
||
|
``` php
|
||
|
<?php
|
||
|
|
||
|
use PhpOffice\Math\Element;
|
||
|
use PhpOffice\Math\Math;
|
||
|
use PhpOffice\Math\Writer\OfficeMathML;
|
||
|
|
||
|
$math = new Math();
|
||
|
$math->add(new Element\Operator('+'));
|
||
|
|
||
|
$writer = new OfficeMathML();
|
||
|
$output = $writer->write($math);
|
||
|
```
|
||
|
|
||
|
## Methods
|
||
|
|
||
|
### writer
|
||
|
|
||
|
The method has one parameter :
|
||
|
|
||
|
* `PhpOffice\Math\Math` **$math**
|
||
|
|
||
|
The method returns a `string`.
|