mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
add paranthesis around numerator and denominator when exporting fractions
new inset for derivatives git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3024 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ebcc9580c9
commit
f3c27aa1f5
@ -39,6 +39,8 @@ libmathed_la_SOURCES = \
|
|||||||
math_defs.h \
|
math_defs.h \
|
||||||
math_deliminset.C \
|
math_deliminset.C \
|
||||||
math_deliminset.h \
|
math_deliminset.h \
|
||||||
|
math_diffinset.C \
|
||||||
|
math_diffinset.h \
|
||||||
math_diminset.C \
|
math_diminset.C \
|
||||||
math_diminset.h \
|
math_diminset.h \
|
||||||
math_dotsinset.C \
|
math_dotsinset.C \
|
||||||
|
75
src/mathed/math_diffinset.C
Normal file
75
src/mathed/math_diffinset.C
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
#include "math_diffinset.h"
|
||||||
|
#include "math_support.h"
|
||||||
|
#include "math_mathmlstream.h"
|
||||||
|
#include "math_symbolinset.h"
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
||||||
|
MathDiffInset::MathDiffInset()
|
||||||
|
: MathNestInset(1)
|
||||||
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
MathInset * MathDiffInset::clone() const
|
||||||
|
{
|
||||||
|
return new MathDiffInset(*this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::addDer(MathArray const & der)
|
||||||
|
{
|
||||||
|
cells_.push_back(MathXArray());
|
||||||
|
cells_.back().data_ = der;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::normalize(NormalStream & os) const
|
||||||
|
{
|
||||||
|
os << "[diff";
|
||||||
|
for (idx_type idx = 0; idx < nargs(); ++idx)
|
||||||
|
os << ' ' << cell(idx);
|
||||||
|
os << ']';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::metrics(MathMetricsInfo const &) const
|
||||||
|
{
|
||||||
|
lyxerr << "should not happen\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::draw(Painter &, int, int) const
|
||||||
|
{
|
||||||
|
lyxerr << "should not happen\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::maplize(MapleStream & os) const
|
||||||
|
{
|
||||||
|
os << "diff(";
|
||||||
|
for (idx_type idx = 0; idx < nargs(); ++idx) {
|
||||||
|
if (idx != 0)
|
||||||
|
os << ',';
|
||||||
|
os << cell(idx);
|
||||||
|
}
|
||||||
|
os << ')';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::mathmlize(MathMLStream & os) const
|
||||||
|
{
|
||||||
|
os << "diff(";
|
||||||
|
for (idx_type idx = 0; idx < nargs(); ++idx) {
|
||||||
|
if (idx != 0)
|
||||||
|
os << ',';
|
||||||
|
os << cell(idx);
|
||||||
|
}
|
||||||
|
os << ')';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathDiffInset::write(WriteStream &) const
|
||||||
|
{
|
||||||
|
lyxerr << "should not happen\n";
|
||||||
|
}
|
||||||
|
|
33
src/mathed/math_diffinset.h
Normal file
33
src/mathed/math_diffinset.h
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
// -*- C++ -*-
|
||||||
|
#ifndef MATH_DIFFINSET_H
|
||||||
|
#define MATH_DIFFINSET_H
|
||||||
|
|
||||||
|
// d f(x)/dx in one block
|
||||||
|
// for interfacing external programs
|
||||||
|
|
||||||
|
#include "math_nestinset.h"
|
||||||
|
|
||||||
|
class MathDiffInset : public MathNestInset {
|
||||||
|
public:
|
||||||
|
///
|
||||||
|
explicit MathDiffInset();
|
||||||
|
///
|
||||||
|
MathInset * clone() const;
|
||||||
|
///
|
||||||
|
void addDer(MathArray const & der);
|
||||||
|
///
|
||||||
|
void metrics(MathMetricsInfo const & st) const;
|
||||||
|
///
|
||||||
|
void draw(Painter &, int x, int y) const;
|
||||||
|
|
||||||
|
///
|
||||||
|
void normalize(NormalStream &) const;
|
||||||
|
///
|
||||||
|
void maplize(MapleStream &) const;
|
||||||
|
///
|
||||||
|
void mathmlize(MathMLStream &) const;
|
||||||
|
///
|
||||||
|
void write(WriteStream & os) const;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -1,8 +1,8 @@
|
|||||||
#include "math_exintinset.h"
|
#include "math_exintinset.h"
|
||||||
#include "math_support.h"
|
#include "math_support.h"
|
||||||
#include "debug.h"
|
|
||||||
#include "math_mathmlstream.h"
|
#include "math_mathmlstream.h"
|
||||||
#include "math_symbolinset.h"
|
#include "math_symbolinset.h"
|
||||||
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
||||||
MathExIntInset::MathExIntInset(string const & name)
|
MathExIntInset::MathExIntInset(string const & name)
|
||||||
|
@ -403,6 +403,20 @@ void extractSums(MathArray & ar)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// search differential stuff
|
||||||
|
//
|
||||||
|
|
||||||
|
void extractDiff(MathArray & ar)
|
||||||
|
{
|
||||||
|
lyxerr << "\nDiffs from: " << ar << "\n";
|
||||||
|
lyxerr << "\nDiffs to: " << ar << "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// combine searches
|
||||||
|
//
|
||||||
|
|
||||||
void extractStructure(MathArray & ar)
|
void extractStructure(MathArray & ar)
|
||||||
{
|
{
|
||||||
extractMatrices(ar);
|
extractMatrices(ar);
|
||||||
@ -410,6 +424,7 @@ void extractStructure(MathArray & ar)
|
|||||||
extractFunctions(ar);
|
extractFunctions(ar);
|
||||||
extractIntegrals(ar);
|
extractIntegrals(ar);
|
||||||
extractSums(ar);
|
extractSums(ar);
|
||||||
|
extractDiff(ar);
|
||||||
extractStrings(ar);
|
extractStrings(ar);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ void MathFracInset::normalize(NormalStream & os) const
|
|||||||
|
|
||||||
void MathFracInset::maplize(MapleStream & os) const
|
void MathFracInset::maplize(MapleStream & os) const
|
||||||
{
|
{
|
||||||
os << '(' << cell(0) << '/' << cell(1) << ')';
|
os << '(' << cell(0) << ")/(" << cell(1) << ')';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user