2013-02-17 10:08:58 +00:00
|
|
|
/**
|
|
|
|
* \file InsetMathSideset.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author André Pönitz
|
|
|
|
* \author Georg Baum
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2016-06-04 08:41:13 +00:00
|
|
|
#include "InsetMathSideset.h"
|
|
|
|
|
|
|
|
#include "InsetMathSymbol.h"
|
|
|
|
#include "MathData.h"
|
|
|
|
#include "MathStream.h"
|
|
|
|
#include "MathSupport.h"
|
|
|
|
|
2013-02-17 10:08:58 +00:00
|
|
|
#include "BufferView.h"
|
|
|
|
#include "Cursor.h"
|
|
|
|
#include "DispatchResult.h"
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "FuncStatus.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
2016-06-04 08:41:13 +00:00
|
|
|
#include "MetricsInfo.h"
|
2013-02-17 10:08:58 +00:00
|
|
|
|
|
|
|
#include "support/debug.h"
|
|
|
|
#include "support/lassert.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// x spacing between the nucleus and the scripts
|
|
|
|
int const dx = 2;
|
2017-07-23 11:11:54 +00:00
|
|
|
} // namespace
|
2013-02-17 10:08:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
InsetMathSideset::InsetMathSideset(Buffer * buf, bool scriptl, bool scriptr)
|
|
|
|
: InsetMathNest(buf, 3 + scriptl + scriptr), scriptl_(scriptl),
|
|
|
|
scriptr_(scriptr)
|
2013-02-17 10:08:58 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
InsetMathSideset::InsetMathSideset(Buffer * buf, bool scriptl, bool scriptr,
|
|
|
|
MathAtom const & at)
|
|
|
|
: InsetMathNest(buf, 3 + scriptl + scriptr), scriptl_(scriptl),
|
|
|
|
scriptr_(scriptr)
|
2013-02-17 10:08:58 +00:00
|
|
|
{
|
|
|
|
nuc().push_back(at);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset * InsetMathSideset::clone() const
|
|
|
|
{
|
|
|
|
return new InsetMathSideset(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::dybt(BufferView const & bv, int asc, int des, bool top) const
|
|
|
|
{
|
|
|
|
bool isCharBox = nuc().empty() ? false : isAlphaSymbol(nuc().back());
|
2013-02-24 20:23:50 +00:00
|
|
|
int dasc = 0;
|
|
|
|
if (scriptl_ && scriptr_)
|
|
|
|
dasc = max(bl().dimension(bv).ascent(), br().dimension(bv).ascent());
|
|
|
|
else if (scriptl_)
|
|
|
|
dasc = bl().dimension(bv).ascent();
|
|
|
|
else if (scriptr_)
|
|
|
|
dasc = br().dimension(bv).ascent();
|
2013-02-17 10:08:58 +00:00
|
|
|
int slevel = nuc().slevel();
|
|
|
|
int ascdrop = dasc - slevel;
|
|
|
|
int desdrop = isCharBox ? 0 : des + nuc().sshift();
|
|
|
|
int mindes = nuc().mindes();
|
|
|
|
des = max(desdrop, ascdrop);
|
|
|
|
des = max(mindes, des);
|
|
|
|
int minasc = nuc().minasc();
|
2013-02-24 20:23:50 +00:00
|
|
|
ascdrop = 0;
|
|
|
|
if (!isCharBox && (scriptl_ || scriptr_)) {
|
|
|
|
if (scriptl_ && scriptr_)
|
|
|
|
ascdrop = asc - min(tl().mindes(), tr().mindes());
|
|
|
|
else if (scriptl_)
|
|
|
|
ascdrop = asc - tl().mindes();
|
|
|
|
else if (scriptr_)
|
|
|
|
ascdrop = asc - tr().mindes();
|
|
|
|
}
|
|
|
|
int udes = 0;
|
|
|
|
if (scriptl_)
|
|
|
|
udes = bl().dimension(bv).descent();
|
|
|
|
if (scriptr_)
|
|
|
|
udes = max(udes, br().dimension(bv).descent());
|
2013-02-17 10:08:58 +00:00
|
|
|
asc = udes + nuc().sshift();
|
|
|
|
asc = max(ascdrop, asc);
|
|
|
|
asc = max(minasc, asc);
|
|
|
|
int del = asc - udes - dasc;
|
|
|
|
if (del + des <= 2) {
|
|
|
|
int newdes = 2 - del;
|
|
|
|
del = slevel - asc + udes;
|
|
|
|
if (del > 0) {
|
|
|
|
asc += del;
|
|
|
|
newdes -= del;
|
|
|
|
}
|
|
|
|
des = max(des, newdes);
|
|
|
|
}
|
|
|
|
return top ? asc : des;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::dyb(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
int nd = ndes(bv);
|
|
|
|
int na = nasc(bv);
|
2015-09-13 12:05:49 +00:00
|
|
|
int des = dybt(bv, na, nd, false);
|
2013-02-17 10:08:58 +00:00
|
|
|
return des;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::dyt(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
int na = nasc(bv);
|
|
|
|
int nd = ndes(bv);
|
2015-09-13 12:05:49 +00:00
|
|
|
int asc = dybt(bv, na, nd, true);
|
2013-02-17 10:08:58 +00:00
|
|
|
return asc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::dxr(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
return dxn(bv) + nwid(bv) + dx;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::dxn(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
Dimension const dimb = bl().dimension(bv);
|
|
|
|
Dimension const dimt = tl().dimension(bv);
|
|
|
|
return max(dimb.width(), dimt.width()) + dx;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::nwid(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
return nuc().dimension(bv).width();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::nasc(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
return nuc().dimension(bv).ascent();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::ndes(BufferView const & bv) const
|
|
|
|
{
|
|
|
|
return nuc().dimension(bv).descent();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetMathSideset::nker(BufferView const * bv) const
|
|
|
|
{
|
|
|
|
int const kerning = nuc().kerning(bv);
|
|
|
|
return max(kerning, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
{
|
2016-11-22 10:26:15 +00:00
|
|
|
Changer dummy2 = mi.base.changeEnsureMath();
|
2013-02-17 10:08:58 +00:00
|
|
|
Dimension dimn;
|
|
|
|
Dimension dimbl;
|
|
|
|
Dimension dimtl;
|
|
|
|
Dimension dimbr;
|
|
|
|
Dimension dimtr;
|
|
|
|
nuc().metrics(mi, dimn);
|
2013-02-24 20:23:50 +00:00
|
|
|
if (!scriptl_) {
|
|
|
|
bl().metrics(mi, dimbl);
|
|
|
|
dimtl = dimbl;
|
|
|
|
}
|
|
|
|
if (!scriptr_) {
|
|
|
|
br().metrics(mi, dimbr);
|
|
|
|
dimtr = dimbr;
|
|
|
|
}
|
2016-05-23 21:30:23 +00:00
|
|
|
Changer dummy = mi.base.changeScript();
|
2013-02-24 20:23:50 +00:00
|
|
|
if (scriptl_) {
|
|
|
|
bl().metrics(mi, dimbl);
|
|
|
|
tl().metrics(mi, dimtl);
|
|
|
|
}
|
|
|
|
if (scriptr_) {
|
|
|
|
br().metrics(mi, dimbr);
|
|
|
|
tr().metrics(mi, dimtr);
|
|
|
|
}
|
2013-02-17 10:08:58 +00:00
|
|
|
|
2020-10-09 15:50:24 +00:00
|
|
|
BufferView const & bv = *mi.base.bv;
|
2013-02-17 10:08:58 +00:00
|
|
|
// FIXME: data copying... not very efficient.
|
|
|
|
|
|
|
|
dim.wid = nwid(bv) + nker(mi.base.bv) + 2 * dx;
|
|
|
|
dim.wid += max(dimbl.width(), dimtl.width());
|
|
|
|
dim.wid += max(dimbr.width(), dimtr.width());
|
|
|
|
int na = nasc(bv);
|
|
|
|
int asc = dyt(bv) + max(dimtl.ascent(), dimtr.ascent());
|
|
|
|
dim.asc = max(na, asc);
|
|
|
|
int nd = ndes(bv);
|
|
|
|
int des = dyb(bv) + max(dimbl.descent(), dimbr.descent());
|
|
|
|
dim.des = max(nd, des);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
2016-11-22 10:26:15 +00:00
|
|
|
Changer dummy2 = pi.base.changeEnsureMath();
|
2020-10-09 15:50:24 +00:00
|
|
|
BufferView const & bv = *pi.base.bv;
|
2013-02-17 10:08:58 +00:00
|
|
|
nuc().draw(pi, x + dxn(bv), y);
|
2013-02-24 20:23:50 +00:00
|
|
|
if (!scriptl_)
|
|
|
|
bl().draw(pi, x , y);
|
|
|
|
if (!scriptr_)
|
|
|
|
br().draw(pi, x + dxr(bv), y);
|
2016-05-23 21:30:23 +00:00
|
|
|
Changer dummy = pi.base.changeScript();
|
2013-02-24 20:23:50 +00:00
|
|
|
if (scriptl_) {
|
|
|
|
bl().draw(pi, x , y + dyb(bv));
|
|
|
|
tl().draw(pi, x , y - dyt(bv));
|
|
|
|
}
|
|
|
|
if (scriptr_) {
|
|
|
|
br().draw(pi, x + dxr(bv), y + dyb(bv));
|
|
|
|
tr().draw(pi, x + dxr(bv), y - dyt(bv));
|
|
|
|
}
|
2013-02-17 10:08:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
|
|
|
|
{
|
|
|
|
bl().metricsT(mi, dim);
|
|
|
|
tl().metricsT(mi, dim);
|
|
|
|
br().metricsT(mi, dim);
|
|
|
|
tr().metricsT(mi, dim);
|
|
|
|
nuc().metricsT(mi, dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::drawT(TextPainter & pain, int x, int y) const
|
|
|
|
{
|
|
|
|
// FIXME: BROKEN
|
|
|
|
nuc().drawT(pain, x + 1, y);
|
|
|
|
bl().drawT(pain, x + 1, y + 1 /*dy0()*/);
|
|
|
|
tl().drawT(pain, x + 1, y - 1 /*dy1()*/);
|
|
|
|
br().drawT(pain, x + 1, y + 1 /*dy0()*/);
|
|
|
|
tr().drawT(pain, x + 1, y - 1 /*dy1()*/);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
bool InsetMathSideset::idxForward(Cursor & cur) const
|
2013-02-17 10:08:58 +00:00
|
|
|
{
|
2013-02-24 20:23:50 +00:00
|
|
|
if (!scriptl_ && cur.idx() == 1) {
|
|
|
|
// left => nucleus
|
|
|
|
cur.idx() = 0;
|
|
|
|
return true;
|
|
|
|
} else if (!scriptr_ && cur.idx() == 0) {
|
|
|
|
// nucleus => right
|
|
|
|
cur.idx() = 2 + scriptl_;
|
|
|
|
return true;
|
|
|
|
}
|
2013-02-17 10:08:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
bool InsetMathSideset::idxBackward(Cursor & cur) const
|
2013-02-17 10:08:58 +00:00
|
|
|
{
|
2013-02-24 20:23:50 +00:00
|
|
|
if (!scriptr_ && cur.idx() == (scriptl_ ? 3 : 2)) {
|
|
|
|
// right => nucleus
|
|
|
|
cur.idx() = 0;
|
|
|
|
return true;
|
|
|
|
} else if (!scriptl_ && cur.idx() == 0) {
|
|
|
|
// nucleus => left
|
|
|
|
cur.idx() = 1;
|
|
|
|
return true;
|
|
|
|
}
|
2013-02-17 10:08:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetMathSideset::idxUpDown(Cursor & cur, bool up) const
|
|
|
|
{
|
|
|
|
// in nucleus?
|
|
|
|
if (cur.idx() == 0) {
|
|
|
|
// go up/down only if in the last position
|
|
|
|
// or in the first position
|
2013-02-24 20:23:50 +00:00
|
|
|
if ((scriptr_ && cur.pos() == cur.lastpos()) ||
|
|
|
|
(scriptl_ && cur.pos() == 0)) {
|
2013-02-17 10:08:58 +00:00
|
|
|
if (cur.pos() == 0)
|
|
|
|
cur.idx() = up ? 2 : 1;
|
|
|
|
else
|
2013-02-24 20:23:50 +00:00
|
|
|
cur.idx() = (up ? 3 : 2) + scriptl_;
|
2013-02-17 10:08:58 +00:00
|
|
|
cur.pos() = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Are we 'up'?
|
2013-02-24 20:23:50 +00:00
|
|
|
if ((scriptl_ && cur.idx() == 2) ||
|
|
|
|
(scriptr_ && cur.idx() == (scriptl_ ? 4 : 3))) {
|
2013-02-17 10:08:58 +00:00
|
|
|
// can't go further up
|
|
|
|
if (up)
|
|
|
|
return false;
|
|
|
|
// otherwise go to first or last position in the nucleus
|
|
|
|
cur.idx() = 0;
|
|
|
|
if (cur.idx() == 2)
|
|
|
|
cur.pos() = 0;
|
|
|
|
else
|
|
|
|
cur.pos() = cur.lastpos();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Are we 'down'?
|
2013-02-24 20:23:50 +00:00
|
|
|
if ((scriptl_ && cur.idx() == 1) ||
|
|
|
|
(scriptr_ && cur.idx() == (scriptl_ ? 3 : 2))) {
|
2013-02-17 10:08:58 +00:00
|
|
|
// can't go further down
|
|
|
|
if (!up)
|
|
|
|
return false;
|
|
|
|
// otherwise go to first or last position in the nucleus
|
|
|
|
cur.idx() = 0;
|
|
|
|
if (cur.idx() == 1)
|
|
|
|
cur.pos() = 0;
|
|
|
|
else
|
|
|
|
cur.pos() = cur.lastpos();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
MathEnsurer ensurer(os);
|
|
|
|
|
|
|
|
os << "\\sideset";
|
2013-02-24 20:23:50 +00:00
|
|
|
os << '{';
|
|
|
|
if (scriptl_) {
|
|
|
|
if (!bl().empty())
|
|
|
|
os << "_{" << bl() << '}';
|
|
|
|
if (!tl().empty())
|
|
|
|
os << "^{" << tl() << '}';
|
|
|
|
} else
|
|
|
|
os << bl();
|
|
|
|
os << "}{";
|
|
|
|
if (scriptr_) {
|
|
|
|
if (!br().empty())
|
|
|
|
os << "_{" << br() << '}';
|
|
|
|
if (!tr().empty())
|
|
|
|
os << "^{" << tr() << '}';
|
|
|
|
} else
|
|
|
|
os << br();
|
|
|
|
os << '}';
|
|
|
|
os << nuc();
|
2013-02-17 10:08:58 +00:00
|
|
|
|
|
|
|
if (lock_ && !os.latex())
|
|
|
|
os << "\\lyxlock ";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[sideset ";
|
|
|
|
|
|
|
|
if (!bl().empty())
|
|
|
|
os << bl() << ' ';
|
2013-02-24 20:23:50 +00:00
|
|
|
if (scriptl_ && !tl().empty())
|
2013-02-17 10:08:58 +00:00
|
|
|
os << tl() << ' ';
|
|
|
|
|
|
|
|
if (!nuc().empty())
|
|
|
|
os << nuc() << ' ';
|
|
|
|
else
|
|
|
|
os << "[par]";
|
|
|
|
|
|
|
|
if (!br().empty())
|
|
|
|
os << br() << ' ';
|
2013-02-24 20:23:50 +00:00
|
|
|
if (scriptr_ && !tr().empty())
|
2013-02-17 10:08:58 +00:00
|
|
|
os << tr() << ' ';
|
|
|
|
os << ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 23:52:07 +00:00
|
|
|
void InsetMathSideset::mathmlize(MathStream & ms) const
|
2013-02-17 10:08:58 +00:00
|
|
|
{
|
2013-02-24 20:23:50 +00:00
|
|
|
// FIXME This is only accurate if both scriptl_ and scriptr_ are true
|
|
|
|
if (!scriptl_)
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << bl() << ETag("mrow");
|
2013-02-24 20:23:50 +00:00
|
|
|
if (scriptl_ || scriptr_) {
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mmultiscripts");
|
2013-02-17 10:08:58 +00:00
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
if (nuc().empty())
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << "<" << from_ascii(ms.namespacedTag("mrow")) << " />";
|
2013-02-24 20:23:50 +00:00
|
|
|
else
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << nuc() << ETag("mrow");
|
2013-02-17 10:08:58 +00:00
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
if (br().empty() || !scriptr_)
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << "<" << from_ascii(ms.namespacedTag("none")) << " />";
|
2013-02-24 20:23:50 +00:00
|
|
|
else
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << br() << ETag("mrow");
|
2013-02-24 20:23:50 +00:00
|
|
|
if (tr().empty() || !scriptr_)
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << "<" << from_ascii(ms.namespacedTag("none")) << " />";
|
2013-02-24 20:23:50 +00:00
|
|
|
else
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << tr() << ETag("mrow");
|
2013-02-17 10:08:58 +00:00
|
|
|
|
2013-02-24 20:23:50 +00:00
|
|
|
if (bl().empty() || !scriptl_)
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << "<" << from_ascii(ms.namespacedTag("none")) << " />";
|
2013-02-24 20:23:50 +00:00
|
|
|
else
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << bl() << ETag("mrow");
|
2013-02-24 20:23:50 +00:00
|
|
|
if (tl().empty() || !scriptl_)
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << "<" << from_ascii(ms.namespacedTag("none")) << " />";
|
2013-02-24 20:23:50 +00:00
|
|
|
else
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << tl() << ETag("mrow");
|
2013-02-17 10:08:58 +00:00
|
|
|
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << ETag("mmultiscripts");
|
2013-02-24 20:23:50 +00:00
|
|
|
}
|
|
|
|
if (!scriptr_)
|
2019-05-09 23:52:07 +00:00
|
|
|
ms << MTag("mrow") << br() << ETag("mrow");
|
2013-02-17 10:08:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::htmlize(HtmlStream & os) const
|
|
|
|
{
|
2013-02-24 20:23:50 +00:00
|
|
|
// FIXME This is only accurate if both scriptl_ and scriptr_ are true
|
|
|
|
bool const havebl = scriptl_ && !bl().empty();
|
|
|
|
bool const havetl = scriptl_ && !tl().empty();
|
|
|
|
bool const havebr = scriptr_ && !br().empty();
|
|
|
|
bool const havetr = scriptr_ && !tr().empty();
|
|
|
|
|
|
|
|
if (!scriptl_ && !bl().empty())
|
|
|
|
os << bl();
|
2013-02-17 10:08:58 +00:00
|
|
|
|
|
|
|
if (havebl && havetl)
|
|
|
|
os << MTag("span", "class='scripts'")
|
|
|
|
<< MTag("span") << tl() << ETag("span")
|
|
|
|
<< MTag("span") << bl() << ETag("span")
|
|
|
|
<< ETag("span");
|
|
|
|
else if (havebl)
|
|
|
|
os << MTag("sub", "class='math'") << bl() << ETag("sub");
|
|
|
|
else if (havetl)
|
|
|
|
os << MTag("sup", "class='math'") << tl() << ETag("sup");
|
|
|
|
|
|
|
|
if (!nuc().empty())
|
|
|
|
os << nuc();
|
|
|
|
|
|
|
|
if (havebr && havetr)
|
|
|
|
os << MTag("span", "class='scripts'")
|
|
|
|
<< MTag("span") << tr() << ETag("span")
|
|
|
|
<< MTag("span") << br() << ETag("span")
|
|
|
|
<< ETag("span");
|
|
|
|
else if (havebr)
|
|
|
|
os << MTag("sub", "class='math'") << br() << ETag("sub");
|
|
|
|
else if (havetr)
|
|
|
|
os << MTag("sup", "class='math'") << tr() << ETag("sup");
|
2013-02-24 20:23:50 +00:00
|
|
|
|
|
|
|
if (!scriptr_ && !br().empty())
|
|
|
|
os << br();
|
2013-02-17 10:08:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetMathSideset::infoize(odocstream & os) const
|
|
|
|
{
|
|
|
|
os << "Sideset";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// the idea for dual scripts came from the eLyXer code
|
|
|
|
void InsetMathSideset::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
|
|
|
if (features.runparams().math_flavor == OutputParams::MathAsHTML)
|
|
|
|
features.addCSSSnippet(
|
|
|
|
"span.scripts{display: inline-block; vertical-align: middle; text-align:center; font-size: 75%;}\n"
|
|
|
|
"span.scripts span {display: block;}\n"
|
|
|
|
"sub.math{font-size: 75%;}\n"
|
|
|
|
"sup.math{font-size: 75%;}");
|
|
|
|
features.require("amsmath");
|
|
|
|
InsetMathNest::validate(features);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace lyx
|