Output double-struck fonts as such in MathML, not in bold

This commit is contained in:
Thibaut Cuvelier 2020-06-10 23:14:16 +02:00 committed by Juergen Spitzmueller
parent 134cb3b265
commit 716e3dc1a8

View File

@ -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"