Register Lost your password?
Full api documentation: full api documentation FREE version full api documentation PRO version

public function addMathEq(string matheq)

Parameters

$addMathEq

  • value : use OMML code to insert an equation

Examples

Example 1


require_once 'classes/CreateDocx.inc';

$docx = new CreateDocx();

$docx->addMathEq(
    '<m:oMathPara>
        <m:oMath><m:r><m:t>∪±∞=~×</m:t></m:r></m:oMath>
    </m:oMathPara>'
);

$docx->createDocx('example_math');

Comments are closed.