diff --git a/src/mathed/math_exfuncinset.C b/src/mathed/math_exfuncinset.C index 0238540a82..7e0b0fd91b 100644 --- a/src/mathed/math_exfuncinset.C +++ b/src/mathed/math_exfuncinset.C @@ -44,7 +44,10 @@ void MathExFuncInset::normalize(NormalStream & os) const void MathExFuncInset::maplize(MapleStream & os) const { - os << name_ << '(' << cell(0) << ')'; + if (name_ == "det") + os << "linalg[det](" << cell(0) << ')'; + else + os << name_ << '(' << cell(0) << ')'; }