MathMl
Posted: Tue Sep 30, 2014 3:04 pm
Hello,
i have an Element <Gleichung> with 1 or ∞ <math> Elements. In Author mode I want to show each of them as a block:
In the CSS it looks like this:
If I open the equation in Author mode with in Mathflow Style Editor a second math element appears in between the first one.
Example before I open the equation:
example after I open the equation:
When I disable Mathflow, it is OK,
when I disable display:block in CSS it works
I use:
Oxygen 16
Mathflow 2.0b style
Mac, Windows
my own framework with extra mathml (although mathml is part of oxygen’s frameworks).
Any help is greatly appreciated
Ulrike Borinski
i have an Element <Gleichung> with 1 or ∞ <math> Elements. In Author mode I want to show each of them as a block:
In the CSS it looks like this:
Code: Select all
Gleichung > mml|math
{
display:block !important;
margin-top:0.7em;
}
mml|math mml|*
{
display:inline !important;
}
Example before I open the equation:
Code: Select all
<Gleichung Nummerierung="false">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<msup>
<mi>x</mi>
<mn>4</mn>
</msup>
</math>
</Gleichung>
Code: Select all
<Gleichung Nummerierung="false">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<math>
<msup>
<mi>x</mi>
<mn>4</mn>
</msup>
</math>
</math>
</Gleichung>
when I disable display:block in CSS it works
I use:
Oxygen 16
Mathflow 2.0b style
Mac, Windows
my own framework with extra mathml (although mathml is part of oxygen’s frameworks).
Any help is greatly appreciated
Ulrike Borinski