]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
findadv: using \w instead of [[:word:]] makes test-case std::regex compatible; also...
[lyx.git] / src / OutputParams.h
index 3b97a3e84d1db528a479c286deb0f88a7ff3b012..ddb3482b02c07e0c388b292f96ef849afd1fb394 100644 (file)
@@ -104,7 +104,7 @@ public:
 
        /** inulemcmd > 0 means that the environment in which the
            inset is typeset is part of a ulem command (\uline, \uuline,
-           \uwave, or \sout). Insets that output latex commands relying
+           \uwave, \sout  or \xout). Insets that output latex commands relying
            on local assignments (such as \cite) should enclose such
            commands in \mbox{} in order to avoid breakage.
        */
@@ -187,11 +187,16 @@ public:
        */
        std::shared_ptr<ExportData> exportdata;
 
-       /** Whether we are inside a display math inset.
+       /** Whether we are entering a display math inset.
         *  Needed to correctly strike out deleted math in change tracking.
         */
        mutable bool inDisplayMath;
 
+       /** Whether we are leaving a display math inset.
+        *  Needed to correctly track nested ulem commands in change tracking.
+        */
+       mutable bool wasDisplayMath;
+
        /** Whether we are inside a comment inset. Insets that are including
         *  external files like InsetGraphics, InsetInclude and InsetExternal
         *  may only write the usual output and must not attempt to do
@@ -200,6 +205,15 @@ public:
         */
        bool inComment;
 
+       /** Whether a btUnit (for multiple biblographies) is open.
+        */
+       mutable bool openbtUnit;
+
+       /** Process only the children's aux files with BibTeX.
+        *  This is necessary with chapterbib.
+        */
+       bool only_childbibs;
+
        /** Whether we are in a table cell.
         *  For newline, it matters whether its content is aligned or not.
          */