469 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
1
answer
64
views
When parsing docx file give error The tag `m:f` has no numerator defined
When parsing docx file gives me error: PhpOffice\Math\Reader\OfficeMathML::getElement : The tag m:f has no numerator defined
PhpWord libary user phpoffice/math libary and i think getting error because ...
0
votes
0
answers
41
views
Control mathml attribute with css class
Is it possible to use css to modify a mathml attribute?
For example, if I wanted to use the attribute stretchy in a class, I could try:
<style>
.nonstretchy {
color: red;
stretchy: 'false';...
1
vote
1
answer
73
views
Issue with Summation Symbol Rendering in MathML using XSL-FO Apache FOP
I am rendering MathML equations in PDF using XSL-FO with Apache FOP. While most equations render correctly, I’ve noticed an issue with the summation symbol — specifically, the lower limit appears ...
0
votes
2
answers
136
views
Square root of fraction causes root symbol to extend excessively
Usually, MathML displays roots with the tail aligned with the bottom of the root content:
When taking the square root of a fraction though, the tail extends well past the the denominator:
Here's the ...
0
votes
1
answer
63
views
MathML in standalone SVG - how to center elements
I'm trying to create a standalone SVG image with embedded MathML. I want the MathML to be centered both vertically and horizontally at a certain location, but can't figure out how to make that happen.
...
0
votes
0
answers
59
views
Java Latex to MathML converter
is there a library like MathJax but for Java? I need to convert Latex to MathML or HTML, but I can't find a library that works as well
Just like this.
Input:
\frac{\sum (r_{i-5})}{N}
Output:
<math ...
0
votes
1
answer
112
views
The 'http://www.w3.org/1998/Math/MathML:math' element is not declared in .NET Core
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><mi>a</mi><mo>+</mo><mi>b</mi><mo> </mo></math>...
3
votes
4
answers
298
views
How to propertly format "Δ𝑥" using MathML?
I'm using MathML embedded in HTML to put mathematical expressions in an HTML document. I'm having difficulty with properly formatting mathematical expressions containing "Δx". The MathML ...
0
votes
0
answers
144
views
MathML in KaTeX Output
I noticed that my KaTeX pipeline inserts MathML elements into the document, which don't seem to get displayed. This is the CSS:
.katex .katex-mathml {
clip: rect(1px,1px,1px,1px);
border: 0;
...
0
votes
0
answers
25
views
Three-fence construction in mathml not working in browsers?
In this growing braket construction:
<math displaystyle="true">
<mi>y</mi>
<mo>=</mo>
<mrow>
<mo>⟨</mo>
<mrow>
...
0
votes
1
answer
146
views
What symbol should I use for the vertical bar in set-builder notations in MathML?
In LaTeX, we often write \{ x \mid x \in X \land \Phi(x) \} for a set-builder notation. In MathML, it will be like
<mo>{</mo>
<mi>x</mi>
<mo>|</mo>
<mi>x</...
0
votes
0
answers
87
views
Mathml is not showing as formula in microsoft word
I am creating a docx generator using docxtemplater. I am injecting Mathml data to show math equation when generating the docx. But it's showing raw mathml in the doc, not equation. I am using word ...
1
vote
2
answers
292
views
Fences (parenthesis, braces) in HTML and MathML
Using MathML, inside <mrow>, I have an expression that is quite big (once rendered, the symbols occupy more space in vertical than the normal text). When I add a <mo>(<\mo> inside ...
1
vote
2
answers
88
views
Parentheses in jqMath lifted up
In jqMath, if I write a pair of parentheses containing only "short" letters (such as "x"), the result is lifted up from the baseline. See here:
or row 5 in the table at https://...
2
votes
2
answers
147
views
Constructing an html <math> element with js doesn't make it render properly
The <math> element works as expected when written by hand, but doesn't render properly when created with js dynamically:
let math = document.createElement('math');
math.setAttribute('display'...