mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
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:
parent
edff97cb30
commit
77bd365b39
@ -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
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
|
@ -38,6 +38,8 @@ public:
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void htmlize(HtmlStream &) const;
|
||||
///
|
||||
void validate(LaTeXFeatures & features) const;
|
||||
///
|
||||
InsetCode lyxCode() const { return MATH_OVERSET_CODE; }
|
||||
|
Loading…
Reference in New Issue
Block a user