-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2477 from PHPOffice/math
Formula : Add Element (& Writer/Reader Word2007/ODText)
- Loading branch information
Showing
30 changed files
with
888 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
name: CI | ||
on: | ||
- push | ||
- pull_request | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Formula | ||
|
||
Formula can be added using | ||
|
||
``` php | ||
<?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); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?php | ||
/** | ||
* This file is part of PHPWord - A pure PHP library for reading and writing | ||
* word processing documents. | ||
* | ||
* PHPWord is free software distributed under the terms of the GNU Lesser | ||
* General Public License version 3 as published by the Free Software Foundation. | ||
* | ||
* For the full copyright and license information, please read the LICENSE | ||
* file that was distributed with this source code. For the full list of | ||
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors. | ||
* | ||
* @see https://github.com/PHPOffice/PHPWord | ||
* | ||
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3 | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PhpOffice\PhpWord\Element; | ||
|
||
use PhpOffice\Math\Math; | ||
|
||
/** | ||
* Formula element. | ||
*/ | ||
class Formula extends AbstractElement | ||
{ | ||
/** | ||
* @var Math | ||
*/ | ||
protected $math; | ||
|
||
/** | ||
* Create a new Formula Element. | ||
*/ | ||
public function __construct(Math $math) | ||
{ | ||
$this->setMath($math); | ||
} | ||
|
||
public function setMath(Math $math): self | ||
{ | ||
$this->math = $math; | ||
|
||
return $this; | ||
} | ||
|
||
public function getMath(): Math | ||
{ | ||
return $this->math; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.