2024-01-03 08:13:13 +08:00
|
|
|
// http://www.datypic.com/sc/ooxml/e-m_lim-1.html
|
|
|
|
import { XmlComponent } from "@file/xml-components";
|
2024-10-21 03:57:15 +01:00
|
|
|
|
2024-01-03 08:13:13 +08:00
|
|
|
import { MathComponent } from "../math-component";
|
|
|
|
|
|
|
|
export class MathLimit extends XmlComponent {
|
|
|
|
public constructor(children: readonly MathComponent[]) {
|
|
|
|
super("m:lim");
|
|
|
|
|
|
|
|
for (const child of children) {
|
|
|
|
this.root.push(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|