mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
MathML for Overset.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32718 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
07aca7cccc
commit
bee7a4c8d2
@ -84,6 +84,12 @@ void InsetMathOverset::normalize(NormalStream & os) const
|
||||
}
|
||||
|
||||
|
||||
void InsetMathOverset::mathmlize(MathStream & ms) const
|
||||
{
|
||||
ms << "<mover accent='false'>" << cell(0) << cell(1) << "</mover>";
|
||||
}
|
||||
|
||||
|
||||
void InsetMathOverset::validate(LaTeXFeatures & features) const
|
||||
{
|
||||
features.require("amsmath");
|
||||
|
@ -36,6 +36,8 @@ public:
|
||||
///
|
||||
void normalize(NormalStream &) const;
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_OVERSET_CODE; }
|
||||
|
Loading…
Reference in New Issue
Block a user