]> git.lyx.org Git - features.git/commitdiff
Properly nest ulem commands within other font changes
authorJuergen Spitzmueller <spitz@lyx.org>
Thu, 11 Jul 2013 09:37:49 +0000 (11:37 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Thu, 11 Jul 2013 19:24:57 +0000 (21:24 +0200)
This reverts the wrong fix to #8424 which caused #8733 and fixes both problems properly

src/Font.cpp
status.20x

index 76e0f2e16156eb40d7d51bc91b221ba22696343b..3602e3102011a7efd591d05cbcd0fdb2f06764b9 100644 (file)
@@ -393,46 +393,45 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
                count += 6;
                env = true; //We have opened a new environment
        }
+       // \noun{} is a LyX special macro
+       if (f.noun() == FONT_ON) {
+               os << "\\noun{";
+               count += 6;
+               env = true; //We have opened a new environment
+       }
+       if (f.size() != FONT_SIZE_INHERIT) {
+               // If we didn't open an environment above, we open one here
+               if (!env) {
+                       os << '{';
+                       ++count;
+               }
+               os << '\\'
+                  << LaTeXSizeNames[f.size()]
+                  << "{}";
+               count += strlen(LaTeXSizeNames[f.size()]) + 3;
+       }
+       // The ulem commands need to be on the deepest nesting level
+       // because ulem puts every nested group or macro in a box,
+       // which prevents linebreaks (#8424, #8733)
        if (f.underbar() == FONT_ON) {
                os << "\\uline{";
                count += 10;
                runparams.inulemcmd = true;
-               env = true; //We have opened a new environment
        }
        if (f.strikeout() == FONT_ON) {
                os << "\\sout{";
                count += 9;
                runparams.inulemcmd = true;
-               env = true; //We have opened a new environment
        }
        if (f.uuline() == FONT_ON) {
                os << "\\uuline{";
                count += 11;
                runparams.inulemcmd = true;
-               env = true; //We have opened a new environment
        }
        if (f.uwave() == FONT_ON) {
                os << "\\uwave{";
                count += 10;
                runparams.inulemcmd = true;
-               env = true; //We have opened a new environment
-       }
-       // \noun{} is a LyX special macro
-       if (f.noun() == FONT_ON) {
-               os << "\\noun{";
-               count += 6;
-               env = true; //We have opened a new environment
-       }
-       if (f.size() != FONT_SIZE_INHERIT) {
-               // If we didn't open an environment above, we open one here
-               if (!env) {
-                       os << '{';
-                       ++count;
-               }
-               os << '\\'
-                  << LaTeXSizeNames[f.size()]
-                  << '{';
-               count += strlen(LaTeXSizeNames[f.size()]) + 2;
        }
        return count;
 }
@@ -481,46 +480,40 @@ int Font::latexWriteEndChanges(otexstream & os, BufferParams const & bparams,
                ++count;
                env = true; // Size change need not bother about closing env.
        }
+       if (f.noun() == FONT_ON) {
+               os << '}';
+               ++count;
+               env = true; // Size change need not bother about closing env.
+       }
+       if (f.size() != FONT_SIZE_INHERIT) {
+               // We only have to close if only size changed
+               if (!env) {
+                       os << '}';
+                       ++count;
+               }
+       }
        if (f.underbar() == FONT_ON) {
                os << '}';
                ++count;
                runparams.inulemcmd = false;
-               env = true; // Size change need not bother about closing env.
        }
        if (f.strikeout() == FONT_ON) {
                os << '}';
                ++count;
                runparams.inulemcmd = false;
-               env = true; // Size change need not bother about closing env.
        }
        if (f.uuline() == FONT_ON) {
                os << '}';
                ++count;
                runparams.inulemcmd = false;
-               env = true; // Size change need not bother about closing env.
        }
        if (f.uwave() == FONT_ON) {
                os << '}';
                ++count;
                runparams.inulemcmd = false;
-               env = true; // Size change need not bother about closing env.
-       }
-       if (f.noun() == FONT_ON) {
-               os << '}';
-               ++count;
-               env = true; // Size change need not bother about closing env.
-       }
-       if (f.size() != FONT_SIZE_INHERIT) {
-               // We only have to close if only size changed
-               if (!env) {
-                       os << '}';
-                       ++count;
-               }
-               os << '}';
-               ++count;
        }
 
-       // When the current language is Hebrew, Arabic, or Farsi
+       // If the current language is Hebrew, Arabic, or Farsi
        // the numbers are written Left-to-Right. ArabTeX package
        // reorders the number automatically but the packages used
        // for Hebrew and Farsi (Arabi) do not.
index beebe0730110e2e09fe47a906c6986077c8efc41..ca26caf20f1847b6d062bf1de4c6bfeec9fcb6f9 100644 (file)
@@ -52,6 +52,9 @@ What's new
 
 * DOCUMENT INPUT/OUTPUT
 
+- Fix output of ulem commands (underline etc.) which was broken as of
+  LyX 2.0.6 (bug 8733).
+
 - Fix problem with unbalanced braces in XeTeX output (bug 8765).
 
 - Added h5 and h6 as tags for Paragraph and Subparagraph.