HTML for overset.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33979 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-31 20:04:39 +00:00
parent edff97cb30
commit 77bd365b39
2 changed files with 20 additions and 1 deletions

View File

@ -90,9 +90,26 @@ void InsetMathOverset::mathmlize(MathStream & ms) const
} }
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 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("<style type=\"text/css\">\n"
"span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
"span.overset span {display: block;}\n"
"span.top{font-size: 66%;}\n"
"</style>");
InsetMathNest::validate(features); InsetMathNest::validate(features);
} }

View File

@ -38,6 +38,8 @@ public:
/// ///
void mathmlize(MathStream &) const; void mathmlize(MathStream &) const;
/// ///
void htmlize(HtmlStream &) const;
///
void validate(LaTeXFeatures & features) const; void validate(LaTeXFeatures & features) const;
/// ///
InsetCode lyxCode() const { return MATH_OVERSET_CODE; } InsetCode lyxCode() const { return MATH_OVERSET_CODE; }