X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathOverset.cpp;h=cf7d6d3feb28669036a297976a08c16f981b8a5f;hb=573500dd04f154f27318ac5ec469a337f97fe9f0;hp=5d8edefef82ee45a64be6e585c7a38ae462ddf67;hpb=90837aaf6eee523fd594c0ea7f44c053bb49a3cf;p=lyx.git diff --git a/src/mathed/InsetMathOverset.cpp b/src/mathed/InsetMathOverset.cpp index 5d8edefef8..cf7d6d3feb 100644 --- a/src/mathed/InsetMathOverset.cpp +++ b/src/mathed/InsetMathOverset.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -73,14 +73,8 @@ bool InsetMathOverset::idxLast(Cursor & cur) const void InsetMathOverset::write(WriteStream & os) const { - bool brace = os.pendingBrace(); - os.pendingBrace(false); - if (os.latex() && os.textMode()) { - os << "\\ensuremath{"; - os.textMode(false); - } + MathEnsurer ensurer(os); os << "\\overset{" << cell(0) << "}{" << cell(1) << '}'; - os.pendingBrace(brace); } @@ -90,9 +84,32 @@ void InsetMathOverset::normalize(NormalStream & os) const } +void InsetMathOverset::mathmlize(MathStream & ms) const +{ + ms << "" << cell(1) << cell(0) << ""; +} + + +void InsetMathOverset::htmlize(HtmlStream & os) const +{ + os << MTag("span", "class='overset'") + << MTag("span", "class='top'") << cell(0) << ETag("span") + << MTag("span") << cell(1) << ETag("span") + << ETag("span"); +} + + void InsetMathOverset::validate(LaTeXFeatures & features) const { - features.require("amsmath"); + if (features.runparams().isLaTeX()) + features.require("amsmath"); + else if (features.runparams().math_flavor == OutputParams::MathAsHTML) + features.addPreambleSnippet(""); + InsetMathNest::validate(features); }