]> git.lyx.org Git - features.git/commitdiff
HTML for overset.
authorRichard Heck <rgheck@comcast.net>
Wed, 31 Mar 2010 20:04:39 +0000 (20:04 +0000)
committerRichard Heck <rgheck@comcast.net>
Wed, 31 Mar 2010 20:04:39 +0000 (20:04 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33979 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathOverset.cpp
src/mathed/InsetMathOverset.h

index 6b49dce35c33abbfa0027a9735e91e49c26da805..cf7d6d3feb28669036a297976a08c16f981b8a5f 100644 (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
 {
-       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);
 }
 
index 5fdeb32e041606140c0a410aa821ec1946db8f67..ac055e1dc92701fa749b9a9cea86114494eb54f1 100644 (file)
@@ -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; }