]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
Use ASCII number in \char definition
[lyx.git] / src / OutputParams.h
index 4534b22c6ed8ebab246e2e04615c9e9dec47c706..ec63d01aaec85525bd0d8f1488412b2bc416eae7 100644 (file)
@@ -79,6 +79,8 @@ public:
            This esentially seems to mean whether InsetInclude, InsetGraphics
            and InsetExternal should add the absolute path to any external
            files or not.
+           Non-nice LaTeX also includes additional safe line breaks in order to
+           increase the precision of forward/reverse search and error reporting.
        */
        bool nice;
 
@@ -185,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
@@ -198,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.
          */