mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
tex2lyx: fix import of umlauts and ß in math (#12739)
This commit is contained in:
parent
27208273ef
commit
624a1be072
@ -213,17 +213,25 @@ void parse_math(Parser & p, ostream & os, unsigned flags, const mode_type mode)
|
||||
|
||||
else if (t.cs() == "\"") {
|
||||
string const name = p.verbatim_item();
|
||||
if (name == "a") os << '\xe4';
|
||||
else if (name == "o") os << '\xf6';
|
||||
else if (name == "u") os << '\xfc';
|
||||
else if (name == "A") os << '\xc4';
|
||||
else if (name == "O") os << '\xd6';
|
||||
else if (name == "U") os << '\xdc';
|
||||
else os << "\"{" << name << "}";
|
||||
LYXERR0("name: " << name);
|
||||
if (name == "a")
|
||||
os << "ä";
|
||||
else if (name == "o")
|
||||
os << "ö";
|
||||
else if (name == "u")
|
||||
os << "ü";
|
||||
else if (name == "A")
|
||||
os << "Ä";
|
||||
else if (name == "O")
|
||||
os << "Ö";
|
||||
else if (name == "U")
|
||||
os << "Ü";
|
||||
else
|
||||
os << "\"{" << name << "}";
|
||||
}
|
||||
|
||||
else if (t.cs() == "ss")
|
||||
os << "\xdf";
|
||||
os << "ß";
|
||||
|
||||
else if (t.cs() == "cr") {
|
||||
// lyx can't handle \\cr
|
||||
|
@ -54,8 +54,6 @@ What's new
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
||||
@ -66,7 +64,7 @@ What's new
|
||||
|
||||
* TEX2LYX
|
||||
|
||||
|
||||
- Fix import of umlauts and ß in math (bug 12739).
|
||||
|
||||
|
||||
* LYXHTML
|
||||
@ -82,3 +80,4 @@ What's new
|
||||
* BUILD/INSTALLATION
|
||||
|
||||
- update included boost library to version 1.75.0.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user