diff --git a/src/mathed/InsetMathChar.cpp b/src/mathed/InsetMathChar.cpp index ebc1644af5..7e57bf28e5 100644 --- a/src/mathed/InsetMathChar.cpp +++ b/src/mathed/InsetMathChar.cpp @@ -239,6 +239,12 @@ void InsetMathChar::mathmlize(MathMLStream & ms) const case '<': entity = "<"; break; case '>': entity = ">"; break; case '&': entity = "&"; break; + case '-': + if (ms.version() == MathMLStream::mathmlCore) { + // − U+2212 MINUS SIGN + entity = "−"; + } + break; case ' ': { ms << from_ascii(" "); return;