mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Output double-struck fonts as such in MathML, not in bold
This commit is contained in:
parent
134cb3b265
commit
716e3dc1a8
@ -203,9 +203,11 @@ void InsetMathFont::mathmlize(MathStream & os) const
|
||||
variant = "normal";
|
||||
else if (tag == "frak" || tag == "mathfrak")
|
||||
variant = "fraktur";
|
||||
else if (tag == "mathbb" || tag == "mathbf"
|
||||
|| tag == "textbf")
|
||||
else if (tag == "mathbf" || tag == "textbf")
|
||||
variant = "bold";
|
||||
else if (tag == "mathbb" || tag == "mathbbm"
|
||||
|| tag == "mathds")
|
||||
variant = "double-struck";
|
||||
else if (tag == "mathcal")
|
||||
variant = "script";
|
||||
else if (tag == "mathit" || tag == "textsl"
|
||||
|
Loading…
Reference in New Issue
Block a user