mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
I don't think we need to do this for MathML or HTML.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33959 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
caf170d612
commit
ab2a59b0a1
@ -122,13 +122,6 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void InsetMathExFunc::mathmlize(MathStream & os) const
|
|
||||||
{
|
|
||||||
os << "<mi>" << name_ << "</mi><mo>⁡</mo>";
|
|
||||||
os << cell(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void InsetMathExFunc::octave(OctaveStream & os) const
|
void InsetMathExFunc::octave(OctaveStream & os) const
|
||||||
{
|
{
|
||||||
os << name_ << '(' << cell(0) << ')';
|
os << name_ << '(' << cell(0) << ')';
|
||||||
|
@ -43,8 +43,6 @@ public:
|
|||||||
///
|
///
|
||||||
void mathematica(MathematicaStream &) const;
|
void mathematica(MathematicaStream &) const;
|
||||||
///
|
///
|
||||||
void mathmlize(MathStream &) const;
|
|
||||||
///
|
|
||||||
void octave(OctaveStream &) const;
|
void octave(OctaveStream &) const;
|
||||||
///
|
///
|
||||||
InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }
|
InsetCode lyxCode() const { return MATH_EXFUNC_CODE; }
|
||||||
|
@ -957,8 +957,8 @@ void extractStructure(MathData & ar, ExternalMath kind)
|
|||||||
extractSums(ar);
|
extractSums(ar);
|
||||||
extractNumbers(ar);
|
extractNumbers(ar);
|
||||||
extractMatrices(ar);
|
extractMatrices(ar);
|
||||||
extractFunctions(ar, kind);
|
|
||||||
if (kind != MATHML && kind != HTML) {
|
if (kind != MATHML && kind != HTML) {
|
||||||
|
extractFunctions(ar, kind);
|
||||||
extractDets(ar);
|
extractDets(ar);
|
||||||
extractDiff(ar);
|
extractDiff(ar);
|
||||||
extractExps(ar);
|
extractExps(ar);
|
||||||
|
Loading…
Reference in New Issue
Block a user