Fix the incorrect limit location value of MathIntergral #2512 (#2513)

This commit is contained in:
yaokailun
2024-01-04 10:42:05 +08:00
committed by GitHub
parent e779f6ea62
commit 75715fde37
4 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ export class MathIntegral extends XmlComponent {
public constructor(options: IMathIntegralOptions) {
super("m:nary");
this.root.push(new MathNAryProperties("", !!options.superScript, !!options.subScript));
this.root.push(new MathNAryProperties("", !!options.superScript, !!options.subScript, "subSup"));
if (!!options.subScript) {
this.root.push(new MathSubScriptElement(options.subScript));