mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
Support all xymatrix arguments
* src/LaTeXFeatures.C (LaTeXFeatures::getPackages): Add package xy * src/mathed/InsetMathXYMatrix.[Ch] (spacing_): New (spacing_code_): New (validate): New, require xy package * src/mathed/InsetMathXYMatrix.C (InsetMathXYMatrix::write): write spacing_ and spacing_code_ (InsetMathXYMatrix::infoize): output spacing_ and spacing_code_ * src/mathed/MathFactory.C (createInsetMath): handle special arguments of xymatrix * src/mathed/MathParser.C (Parser::parse1): ditto git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15643 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
864ed2c8f9
commit
f8b9d95ee4
@ -383,6 +383,9 @@ string const LaTeXFeatures::getPackages() const
|
|||||||
packages << "\\usepackage[dot]{bibtopic}\n";
|
packages << "\\usepackage[dot]{bibtopic}\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isRequired("xy"))
|
||||||
|
packages << "\\usepackage[all]{xy}\n";
|
||||||
|
|
||||||
return packages.str();
|
return packages.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
|
|
||||||
#include "InsetMathXYMatrix.h"
|
#include "InsetMathXYMatrix.h"
|
||||||
#include "MathStream.h"
|
#include "MathStream.h"
|
||||||
#include "MathStream.h"
|
|
||||||
|
|
||||||
#include "LaTeXFeatures.h"
|
#include "LaTeXFeatures.h"
|
||||||
#include "support/std_ostream.h"
|
#include "support/std_ostream.h"
|
||||||
@ -21,8 +20,8 @@
|
|||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
|
||||||
|
|
||||||
InsetMathXYMatrix::InsetMathXYMatrix()
|
InsetMathXYMatrix::InsetMathXYMatrix(LyXLength const & s, char c)
|
||||||
: InsetMathGrid(1, 1)
|
: InsetMathGrid(1, 1), spacing_(s), spacing_code_(c)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
@ -54,7 +53,22 @@ void InsetMathXYMatrix::metrics(MetricsInfo & mi, Dimension & dim) const
|
|||||||
|
|
||||||
void InsetMathXYMatrix::write(WriteStream & os) const
|
void InsetMathXYMatrix::write(WriteStream & os) const
|
||||||
{
|
{
|
||||||
os << "\\xymatrix{";
|
os << "\\xymatrix";
|
||||||
|
switch (spacing_code_) {
|
||||||
|
case 'R':
|
||||||
|
case 'C':
|
||||||
|
case 'M':
|
||||||
|
case 'W':
|
||||||
|
case 'H':
|
||||||
|
case 'L':
|
||||||
|
os << '@' << spacing_code_ << '='
|
||||||
|
<< from_ascii(spacing_.asLatexString());
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
if (!spacing_.empty())
|
||||||
|
os << "@=" << from_ascii(spacing_.asLatexString());
|
||||||
|
}
|
||||||
|
os << '{';
|
||||||
InsetMathGrid::write(os);
|
InsetMathGrid::write(os);
|
||||||
os << "}\n";
|
os << "}\n";
|
||||||
}
|
}
|
||||||
@ -63,6 +77,20 @@ void InsetMathXYMatrix::write(WriteStream & os) const
|
|||||||
void InsetMathXYMatrix::infoize(odocstream & os) const
|
void InsetMathXYMatrix::infoize(odocstream & os) const
|
||||||
{
|
{
|
||||||
os << "xymatrix ";
|
os << "xymatrix ";
|
||||||
|
switch (spacing_code_) {
|
||||||
|
case 'R':
|
||||||
|
case 'C':
|
||||||
|
case 'M':
|
||||||
|
case 'W':
|
||||||
|
case 'H':
|
||||||
|
case 'L':
|
||||||
|
os << spacing_code_ << ' '
|
||||||
|
<< from_ascii(spacing_.asLatexString()) << ' ';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
if (!spacing_.empty())
|
||||||
|
os << from_ascii(spacing_.asLatexString()) << ' ';
|
||||||
|
}
|
||||||
InsetMathGrid::infoize(os);
|
InsetMathGrid::infoize(os);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,4 +111,11 @@ void InsetMathXYMatrix::maple(MapleStream & os) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void InsetMathXYMatrix::validate(LaTeXFeatures & features) const
|
||||||
|
{
|
||||||
|
features.require("xy");
|
||||||
|
InsetMathGrid::validate(features);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
} // namespace lyx
|
} // namespace lyx
|
||||||
|
@ -22,7 +22,7 @@ namespace lyx {
|
|||||||
class InsetMathXYMatrix : public InsetMathGrid {
|
class InsetMathXYMatrix : public InsetMathGrid {
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
InsetMathXYMatrix();
|
InsetMathXYMatrix(LyXLength const & = LyXLength(), char c = '\0');
|
||||||
///
|
///
|
||||||
void metrics(MetricsInfo &, Dimension &) const;
|
void metrics(MetricsInfo &, Dimension &) const;
|
||||||
///
|
///
|
||||||
@ -42,9 +42,15 @@ public:
|
|||||||
void normalize(NormalStream &) const;
|
void normalize(NormalStream &) const;
|
||||||
///
|
///
|
||||||
void maple(MapleStream &) const;
|
void maple(MapleStream &) const;
|
||||||
|
///
|
||||||
|
void validate(LaTeXFeatures & features) const;
|
||||||
private:
|
private:
|
||||||
///
|
///
|
||||||
virtual std::auto_ptr<InsetBase> doClone() const;
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
||||||
|
/// extra spacing, may be empty
|
||||||
|
LyXLength spacing_;
|
||||||
|
///
|
||||||
|
char spacing_code_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -310,8 +310,33 @@ MathAtom createInsetMath(docstring const & s)
|
|||||||
return MathAtom(new InsetMathMakebox);
|
return MathAtom(new InsetMathMakebox);
|
||||||
if (s == "kern")
|
if (s == "kern")
|
||||||
return MathAtom(new InsetMathKern);
|
return MathAtom(new InsetMathKern);
|
||||||
if (s == "xymatrix")
|
if (s.substr(0, 8) == "xymatrix") {
|
||||||
return MathAtom(new InsetMathXYMatrix);
|
char spacing_code = '\0';
|
||||||
|
LyXLength spacing;
|
||||||
|
size_t const len = s.length();
|
||||||
|
size_t i = 8;
|
||||||
|
if (i < len && s[i] == '@') {
|
||||||
|
++i;
|
||||||
|
if (i < len) {
|
||||||
|
switch (s[i]) {
|
||||||
|
case 'R':
|
||||||
|
case 'C':
|
||||||
|
case 'M':
|
||||||
|
case 'W':
|
||||||
|
case 'H':
|
||||||
|
case 'L':
|
||||||
|
spacing_code = s[i];
|
||||||
|
++i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (i < len && s[i] == '=') {
|
||||||
|
++i;
|
||||||
|
spacing = LyXLength(to_ascii(s.substr(i)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return MathAtom(new InsetMathXYMatrix(spacing, spacing_code));
|
||||||
|
}
|
||||||
if (s == "xrightarrow" || s == "xleftarrow")
|
if (s == "xrightarrow" || s == "xleftarrow")
|
||||||
return MathAtom(new InsetMathXArrow(s));
|
return MathAtom(new InsetMathXArrow(s));
|
||||||
if (s == "split" || s == "gathered" || s == "aligned" || s == "alignedat")
|
if (s == "split" || s == "gathered" || s == "aligned" || s == "alignedat")
|
||||||
|
@ -1267,7 +1267,10 @@ void Parser::parse1(InsetMathGrid & grid, unsigned flags,
|
|||||||
}
|
}
|
||||||
|
|
||||||
else if (t.cs() == "xymatrix") {
|
else if (t.cs() == "xymatrix") {
|
||||||
cell->push_back(createInsetMath(t.cs()));
|
odocstringstream os;
|
||||||
|
while (good() && nextToken().cat() != catBegin)
|
||||||
|
os << getToken().asInput();
|
||||||
|
cell->push_back(createInsetMath(t.cs() + os.str()));
|
||||||
parse2(cell->back(), FLAG_ITEM, mode, false);
|
parse2(cell->back(), FLAG_ITEM, mode, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user