]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
* GuiDocument.cpp:
[lyx.git] / src / OutputParams.h
index cc0f01548eb6da3848f7bc760a650f461674c36f..6b25658ee3e7425810ea1d1e53c07d244e04f103 100644 (file)
@@ -75,6 +75,14 @@ public:
        */
        bool intitle;
 
+       /** inulemcmd == true 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
+           on local assignments (such as \cite) should enclose such
+           commands in \mbox{} in order to avoid breakage.
+       */
+       mutable bool inulemcmd;
+
        /** the font at the point where the inset is
         */
        Font const * local_font;
@@ -111,10 +119,22 @@ public:
        */
        bool use_babel;
 
+       /** Are we generating multiple indices?
+       */
+       bool use_indices;
+
        /** Are we using japanese (pLaTeX)?
        */
        bool use_japanese;
 
+       /** Customized bibtex_command
+       */
+       mutable std::string bibtex_command;
+
+       /** Customized index_command
+       */
+       mutable std::string index_command;
+
        /** Line length to use with plaintext export.
        */
        size_type linelen;
@@ -178,6 +198,8 @@ public:
        bool dryrun;
        /// Should we output verbatim or escape LaTeX's special chars?
        bool verbatim;
+       /// Should we output captions? (Used in HTML output.)
+       bool disable_captions;
 };