mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Use symbols file to lookup entities for delimiters. Fixes bug #8280.
Based upon work by Josh Hieronymus.
(cherry picked from commit 04b8f5cdc4
)
This commit is contained in:
parent
98ba7cf49d
commit
f3fbfcfd05
@ -107,48 +107,9 @@ void InsetMathBig::normalize(NormalStream & os) const
|
||||
|
||||
void InsetMathBig::mathmlize(MathStream & os) const
|
||||
{
|
||||
os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>";
|
||||
if (delim_ == "(" || delim_ == ")"
|
||||
|| delim_ == "[" || delim_ == "]"
|
||||
|| delim_ == "|" || delim_ == "/")
|
||||
os << delim_;
|
||||
else if (delim_ == "\\{" || delim_ == "\\lbrace")
|
||||
os << "{";
|
||||
else if (delim_ == "\\}" || delim_ == "\\rbrace")
|
||||
os << "}";
|
||||
else if (delim_ == "\\slash")
|
||||
os << "/";
|
||||
else if (delim_ == "\\|" || delim_ == "\\vert")
|
||||
os << "|";
|
||||
else if (delim_ == "\\Vert")
|
||||
os << "∥";
|
||||
else if (delim_ == "\\\\" || delim_ == "\\backslash")
|
||||
os <<" \\";
|
||||
else if (delim_ == "\\langle")
|
||||
os << "<";
|
||||
else if (delim_ == "\\rangle")
|
||||
os << ">";
|
||||
else if (delim_ == "\\lceil")
|
||||
os << "⌈";
|
||||
else if (delim_ == "\\rceil")
|
||||
os << "⌉";
|
||||
else if (delim_ == "\\lfloor")
|
||||
os << "⌊";
|
||||
else if (delim_ == "\\rfloor")
|
||||
os << "⌋";
|
||||
else if (delim_ == "\\downarrow")
|
||||
os << "↓";
|
||||
else if (delim_ == "\\uparrow")
|
||||
os << "↑";
|
||||
else if (delim_ == "\\Downarrow")
|
||||
os << "⇓";
|
||||
else if (delim_ == "\\Uparrow")
|
||||
os << "⇑";
|
||||
else if (delim_ == "\\updownarrow")
|
||||
os << "↕";
|
||||
else if (delim_ == "\\Updownarrow")
|
||||
os << "⇕";
|
||||
os << "</mo>";
|
||||
os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>"
|
||||
<< convertDelimToXMLEscape(delim_)
|
||||
<< "</mo>";
|
||||
}
|
||||
|
||||
|
||||
@ -161,48 +122,9 @@ void InsetMathBig::htmlize(HtmlStream & os) const
|
||||
case 4: case 5: name = "biggg"; break;
|
||||
default: name = "big"; break;
|
||||
}
|
||||
os << MTag("span", "class='" + name + "symbol'");
|
||||
if (delim_ == "(" || delim_ == ")"
|
||||
|| delim_ == "[" || delim_ == "]"
|
||||
|| delim_ == "|" || delim_ == "/")
|
||||
os << delim_;
|
||||
else if (delim_ == "\\{" || delim_ == "\\lbrace")
|
||||
os << "{";
|
||||
else if (delim_ == "\\}" || delim_ == "\\rbrace")
|
||||
os << "}";
|
||||
else if (delim_ == "\\slash")
|
||||
os << "/";
|
||||
else if (delim_ == "\\|" || delim_ == "\\vert")
|
||||
os << "|";
|
||||
else if (delim_ == "\\Vert")
|
||||
os << "∥";
|
||||
else if (delim_ == "\\\\" || delim_ == "\\backslash")
|
||||
os <<" \\";
|
||||
else if (delim_ == "\\langle")
|
||||
os << "<";
|
||||
else if (delim_ == "\\rangle")
|
||||
os << ">";
|
||||
else if (delim_ == "\\lceil")
|
||||
os << "⌈";
|
||||
else if (delim_ == "\\rceil")
|
||||
os << "⌉";
|
||||
else if (delim_ == "\\lfloor")
|
||||
os << "⌊";
|
||||
else if (delim_ == "\\rfloor")
|
||||
os << "⌋";
|
||||
else if (delim_ == "\\downarrow")
|
||||
os << "↓";
|
||||
else if (delim_ == "\\uparrow")
|
||||
os << "↑";
|
||||
else if (delim_ == "\\Downarrow")
|
||||
os << "⇓";
|
||||
else if (delim_ == "\\Uparrow")
|
||||
os << "⇑";
|
||||
else if (delim_ == "\\updownarrow")
|
||||
os << "↕";
|
||||
else if (delim_ == "\\Updownarrow")
|
||||
os << "⇕";
|
||||
os << ETag("span");
|
||||
os << MTag("span", "class='" + name + "symbol'")
|
||||
<< convertDelimToXMLEscape(delim_)
|
||||
<< ETag("span");
|
||||
}
|
||||
|
||||
|
||||
|
@ -192,14 +192,21 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
|
||||
|
||||
void InsetMathDelim::mathmlize(MathStream & os) const
|
||||
{
|
||||
os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>" << left_ << "</mo>"
|
||||
<< cell(0) << "<mo form='postfix' fence='true' stretchy='true' symmetric='true'>" << right_ << "</mo>";
|
||||
os << "<mo form='prefix' fence='true' stretchy='true' symmetric='true'>"
|
||||
<< convertDelimToXMLEscape(left_)
|
||||
<< "</mo>\n"
|
||||
<< cell(0)
|
||||
<< "\n<mo form='postfix' fence='true' stretchy='true' symmetric='true'>"
|
||||
<< convertDelimToXMLEscape(right_)
|
||||
<< "</mo>\n";
|
||||
}
|
||||
|
||||
|
||||
void InsetMathDelim::htmlize(HtmlStream & os) const
|
||||
{
|
||||
os << left_ << cell(0) << right_;
|
||||
os << convertDelimToXMLEscape(left_)
|
||||
<< cell(0)
|
||||
<< convertDelimToXMLEscape(right_);
|
||||
}
|
||||
|
||||
|
||||
|
@ -12,6 +12,7 @@
|
||||
|
||||
#include "MathStream.h"
|
||||
|
||||
#include "MathFactory.h"
|
||||
#include "MathData.h"
|
||||
#include "MathExtern.h"
|
||||
|
||||
@ -710,4 +711,25 @@ OctaveStream & operator<<(OctaveStream & os, string const & s)
|
||||
}
|
||||
|
||||
|
||||
docstring convertDelimToXMLEscape(docstring const & name)
|
||||
{
|
||||
if (name.size() == 1) {
|
||||
char_type const c = name[0];
|
||||
if (c == '<')
|
||||
return from_ascii("<");
|
||||
else if (c == '>')
|
||||
return from_ascii(">");
|
||||
else
|
||||
return name;
|
||||
}
|
||||
MathWordList const & words = mathedWordList();
|
||||
MathWordList::const_iterator it = words.find(name);
|
||||
if (it != words.end()) {
|
||||
docstring const escape = it->second.xmlname;
|
||||
return escape;
|
||||
}
|
||||
LYXERR0("Unable to find `" << name <<"' in the mathWordList.");
|
||||
return name;
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -589,6 +589,9 @@ OctaveStream & operator<<(OctaveStream &, char);
|
||||
///
|
||||
OctaveStream & operator<<(OctaveStream &, int);
|
||||
|
||||
|
||||
docstring convertDelimToXMLEscape(docstring const & name);
|
||||
|
||||
} // namespace lyx
|
||||
|
||||
#endif
|
||||
|
@ -171,6 +171,8 @@ What's new
|
||||
|
||||
- Fix output of vertical space in the middle of a paragraph (bug 8154).
|
||||
|
||||
- Output correct entities for named delimiters (bug 8280).
|
||||
|
||||
|
||||
* TEX2LYX
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user