mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Substack support for XHTML.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38197 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9c5ff86089
commit
77185fe83d
@ -44,8 +44,6 @@ Math
|
||||
- Space: Needs checking.
|
||||
- SpecialChar: Needs checking.
|
||||
- Split: There are some alignment issues here, but it basically works.
|
||||
- Substack: This is a stack of however many cells, all in a smaller style.
|
||||
Probably do something with <mover>, again.
|
||||
- Tabular: This is more or less a text-like table in math. Probably output it
|
||||
as a table, but set the font.
|
||||
|
||||
|
@ -128,6 +128,22 @@ void InsetMathSubstack::maple(MapleStream & os) const
|
||||
}
|
||||
|
||||
|
||||
void InsetMathSubstack::mathmlize(MathStream & os) const
|
||||
{
|
||||
int movers = 0;
|
||||
row_type const numrows = nrows();
|
||||
for (row_type row = 0; row < nrows(); ++row) {
|
||||
if (row < numrows - 1) {
|
||||
movers ++;
|
||||
os << MTag("munder");
|
||||
}
|
||||
os << MTag("mrow") << cell(index(row, 0)) << ETag("mrow");
|
||||
}
|
||||
for (int i = 1; i <= movers; ++i)
|
||||
os << ETag("munder");
|
||||
}
|
||||
|
||||
|
||||
void InsetMathSubstack::htmlize(HtmlStream & os) const
|
||||
{
|
||||
os << MTag("span", "class='substack'");
|
||||
|
@ -39,6 +39,8 @@ public:
|
||||
///
|
||||
void write(WriteStream & os) const;
|
||||
///
|
||||
void mathmlize(MathStream &) const;
|
||||
///
|
||||
void htmlize(HtmlStream &) const;
|
||||
///
|
||||
void normalize(NormalStream &) const;
|
||||
|
Loading…
Reference in New Issue
Block a user