fix(docx): parse integrals as n-ary objects without chr element (#2712)

Signed-off-by: Cesar Berrospi Ramis <ceb@zurich.ibm.com>
This commit is contained in:
Cesar Berrospi Ramis
2025-12-03 11:25:52 +01:00
committed by GitHub
parent f80c903c24
commit c97715f5fd
6 changed files with 248 additions and 5 deletions

View File

@@ -26,4 +26,26 @@ This is a word document and this is an inline equation: $A= \pi r^{2}$ . If ins
$$e^{x}=1+\frac{x}{1!}+\frac{x^{2}}{2!}+\frac{x^{3}}{3!}+ \text{ \textellipsis } , - \infty < x < \infty$$
And that is an equation by itself. Cheers!
And that is an equation by itself. Cheers!
Large operators and integrals are represented with n-ary objects in OMML XML:
$$\sum_{0}^{2}x$$
$$\bigcup_{n=1}^{m}\left(X_{n} \cap Y_{n}\right)$$
$$\prod_{k=1}^{n}A_{k}$$
$$\bigwedge_{}^{}x$$
$$\int_{}^{}(2x+1)dx$$
$$\iint_{0}^{1}xdx$$
$$\iiint_{}^{}ydy$$
$$\oint_{}^{}\frac{dy}{dx}$$
$$\oiint_{0}^{2 \pi }idt$$
$$\oiiint_{C}^{}\frac{1}{z}dz$$