Add MathIntegral class

This commit is contained in:
tvale1
2022-10-08 12:56:35 +11:00
parent 059455929b
commit 9ab6df99b1
5 changed files with 67 additions and 1 deletions

View File

@ -10,7 +10,9 @@ export class MathNAryProperties extends XmlComponent {
public constructor(accent: string, hasSuperScript: boolean, hasSubScript: boolean) {
super("m:naryPr");
this.root.push(new MathAccentCharacter(accent));
if (!!accent){
this.root.push(new MathAccentCharacter(accent));
}
this.root.push(new MathLimitLocation());
if (!hasSuperScript) {