Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 338 Bytes

formula.md

File metadata and controls

21 lines (15 loc) · 338 Bytes

Formula

Formula can be added using

<?php

use PhpOffice\Math\Element;
use PhpOffice\Math\Math;

$fraction = new Element\Fraction();
$fraction
    ->setDenominator(new Element\Numeric(2))
    ->setNumerator(new Element\Identifier('π'))
;

$math = new Math();
$math->add($fraction);

$formula = $section->addFormula($math);