Mostly comments about InsetMathSplit, which more or less works.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32727 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-31 23:28:19 +00:00
parent b9a507932f
commit 69fc2f6702
2 changed files with 16 additions and 0 deletions

View File

@ -111,6 +111,20 @@ void InsetMathSplit::infoize(odocstream & os) const
}
void InsetMathSplit::mathmlize(MathStream & ms) const
{
// split, gathered, aligned, alignedat
// At the moment, those seem to display just fine without any
// special treatment.
// FIXME
// lgathered and rgathered could use the proper alignment, but
// it's not clear how to do that without copying a lot of code.
// One idea would be to wrap the table in an <mrow>, and set the
// alignment there via CSS.
InsetMathGrid::mathmlize(ms);
}
void InsetMathSplit::validate(LaTeXFeatures & features) const
{
if (name_ == "split" || name_ == "gathered" || name_ == "aligned" ||

View File

@ -33,6 +33,8 @@ public:
///
void infoize(odocstream & os) const;
///
void mathmlize(MathStream &) const;
///
void validate(LaTeXFeatures & features) const;
///
int defaultColSpace(col_type) { return 0; }