]> git.lyx.org Git - features.git/commitdiff
Update latex export of combining characters.
authorGünter Milde <milde@lyx.org>
Sat, 2 Mar 2019 17:58:53 +0000 (18:58 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 12:39:59 +0000 (14:39 +0200)
* Remove exception for polytonikogreek (drop braces)
  no longer required since the fixes to #6463 and #9637.
* Update comments.

src/Encoding.cpp
src/Paragraph.cpp

index 026ad3c43e190d8bbe48889d069a4cb948b5b45b..5c0681903593b475b4cb8e7f38b1ffec1e6e044a 100644 (file)
@@ -580,7 +580,7 @@ string const Encodings::TIPAShortcut(char_type c)
        return string();
 }
 
-
+// Return true, if `c` is a supported Greek or Cyrillic letter.
 bool Encodings::isKnownScriptChar(char_type const c, string & preamble)
 {
        CharInfoMap::const_iterator const it = unicodesymbols.find(c);
@@ -602,6 +602,8 @@ bool Encodings::isKnownScriptChar(char_type const c, string & preamble)
 
 bool Encodings::needsScriptWrapper(string const & script, string const & fontenc)
 {
+       // Note: the wrapper is not required with Unicode font encoding "TU".
+       // However, this function is not called with non-TeX (Unicode) fonts.
        if (script == "textgreek")
                return (fontenc != "LGR");
        if (script == "textcyrillic") {
index 4977c2f275624bc9628eda4d17395a16ebfc2e35..0ad14ce353ae664e5c51a155103e10b28270b5ca 100644 (file)
@@ -869,7 +869,7 @@ int Paragraph::eraseChars(pos_type start, pos_type end, bool trackChanges)
        return end - i;
 }
 
-
+// Handle combining characters
 int Paragraph::Private::latexSurrogatePair(BufferParams const & bparams,
                otexstream & os, char_type c, char_type next,
                OutputParams const & runparams)
@@ -895,16 +895,15 @@ int Paragraph::Private::latexSurrogatePair(BufferParams const & bparams,
        docstring::size_type const brace1 = latex2.find_first_of(from_ascii("{"));
        docstring::size_type const brace2 = latex2.find_last_of(from_ascii("}"));
        string script = to_ascii(latex2.substr(1, brace1 - 1));
-       // "Script chars" need to embraced in \textcyrillic and \textgreek notwithstanding
-       // whether they are encodable or not (it only depends on the font encoding),
-       // except if we are using fontspec.
+
+       // Greek and Cyrillic letters need to be wrapped in \textcyrillic and \textgreek  if they
+       // are not encodable in the current font encoding (regardless of the input encoding).
        bool scriptchar = false;
-       if (!bparams.useNonTeXFonts)
-               // This will get us a script value to deal with below
+       if (!bparams.useNonTeXFonts) // With non-TeX fonts the font encoding is Unicode.
                scriptchar = Encodings::isKnownScriptChar(c, script);
 
        if (!scriptchar && docstring(1, next) == latex1) {
-               // The encoding supports the combination:
+               // Font and input encoding support the combination:
                // output as is (combining char after base char).
                os << latex2 << latex1;
                return latex1.length() + latex2.length();
@@ -920,32 +919,20 @@ int Paragraph::Private::latexSurrogatePair(BufferParams const & bparams,
        docstring scriptmacro;
        docstring cb;
        if (script == "textgreek" || script == "textcyrillic") {
-               // We separate the script macro (\text[greek|cyr]) from the rest,
-               // since we need to include the combining char in it (#6463).
-               // This is "the rest":
+               // Strip the \text(greek|cyrillic) script macro  ...
                pos = brace1 + 1;
                length -= pos;
                latex2 = latex2.substr(pos, length);
-               // We only need the script macro with non-native font encodings
-               // and with XeTeX/LuaTeX (with TeX fonts)
+               // and place it before the accent macro if required (#6463)
                if (Encodings::needsScriptWrapper(script, fontenc)
-                   || runparams.isFullUnicode()) {
+                       || runparams.isFullUnicode()) {
                        scriptmacro = from_ascii("\\" + script + "{");
                        cb = from_ascii("}");
                }
        }
 
-       docstring lb;
-       docstring rb;
-       // polutonikogreek does not play nice with brackets
-       if (!runparams.local_font
-           || runparams.local_font->language()->lang() != "polutonikogreek") {
-               lb = from_ascii("{");
-               rb = from_ascii("}");
-       }
-
-       os << scriptmacro << latex1 << lb << latex2 << rb << cb;
-       return latex1.length() + latex2.length() + lb.length() + rb.length() + cb.length();
+       os << scriptmacro << latex1 << "{" << latex2 << "}" << cb;
+       return latex1.length() + 1 + latex2.length() + 1 + cb.length();
 }