mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 18:24:48 +00:00
MathML for MathCases.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32715 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
14001c49fe
commit
f621c97411
@ -143,6 +143,13 @@ void InsetMathCases::maple(MapleStream & os) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void InsetMathCases::mathmlize(MathStream & ms) const
|
||||||
|
{
|
||||||
|
ms << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>{</mo>";
|
||||||
|
InsetMathGrid::mathmlize(ms);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void InsetMathCases::infoize(odocstream & os) const
|
void InsetMathCases::infoize(odocstream & os) const
|
||||||
{
|
{
|
||||||
os << "Cases ";
|
os << "Cases ";
|
||||||
|
@ -43,6 +43,8 @@ public:
|
|||||||
///
|
///
|
||||||
void maple(MapleStream &) const;
|
void maple(MapleStream &) const;
|
||||||
///
|
///
|
||||||
|
void mathmlize(MathStream &) const;
|
||||||
|
///
|
||||||
void write(WriteStream & os) const;
|
void write(WriteStream & os) const;
|
||||||
///
|
///
|
||||||
void validate(LaTeXFeatures & features) const;
|
void validate(LaTeXFeatures & features) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user