mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 19:14:51 +00:00
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:
parent
b9a507932f
commit
69fc2f6702
@ -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
|
void InsetMathSplit::validate(LaTeXFeatures & features) const
|
||||||
{
|
{
|
||||||
if (name_ == "split" || name_ == "gathered" || name_ == "aligned" ||
|
if (name_ == "split" || name_ == "gathered" || name_ == "aligned" ||
|
||||||
|
@ -33,6 +33,8 @@ public:
|
|||||||
///
|
///
|
||||||
void infoize(odocstream & os) const;
|
void infoize(odocstream & os) const;
|
||||||
///
|
///
|
||||||
|
void mathmlize(MathStream &) const;
|
||||||
|
///
|
||||||
void validate(LaTeXFeatures & features) const;
|
void validate(LaTeXFeatures & features) const;
|
||||||
///
|
///
|
||||||
int defaultColSpace(col_type) { return 0; }
|
int defaultColSpace(col_type) { return 0; }
|
||||||
|
Loading…
Reference in New Issue
Block a user