]> git.lyx.org Git - lyx.git/blobdiff - src/OutputParams.h
* src/inset/InsetNomencl.cpp:
[lyx.git] / src / OutputParams.h
index c45c1092299c3b605290d84f014bc57159e54680..ae2e13d962e140d41b6909d9f1c8cf7497d215bb 100644 (file)
@@ -73,7 +73,7 @@ public:
        /** Current stream encoding. Only used for LaTeX.
            This must be set to the document encoding (via the constructor)
            before output starts. Afterwards it must be kept up to date for
-           each single character (\see Paragraph::simpleTeXOnePar).
+           each single character (\sa Paragraph::latex).
            This does also mean that you need to set it back if you use a
            copy (e.g. in insets): \code
            int InsetFoo::latex(..., OutputParams const & runparams_in) const
@@ -98,6 +98,10 @@ public:
        */
        bool use_babel;
 
+       /** Are we using japanese (pLaTeX)?
+       */
+       bool use_japanese;
+
        /** Line length to use with plaintext export.
        */
        size_type linelen;
@@ -146,6 +150,8 @@ public:
         *  This mode will be used to preview the source code
         */
        bool dryrun;
+       /// Should we output verbatim or escape LaTeX's special chars?
+       bool verbatim;
 };