## Writers ### MathML The name of the writer is `MathML`. ``` php add(new Element\Operator('+')); $writer = new MathML(); $output = $writer->write($math); ``` ### OfficeMathML The name of the writer is `OfficeMathML`. ``` php 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`.