]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Preamble.h
FindAdv: Comments
[lyx.git] / src / tex2lyx / Preamble.h
index 8461983d1aea59d8788cbe716465d228416f00bc..804e5caf0ccd59b28538dc9ec268df925b0deb25 100644 (file)
@@ -48,10 +48,14 @@ public:
        std::string fontCJK() const { return h_font_cjk; }
        ///
        void fontCJK(std::string const & f) { h_font_cjk_set = true; h_font_cjk = f; }
+       ///
+       bool minted() const { return h_use_minted; }
        /// The document language
        std::string docLanguage() const { return h_language; }
        /// The language of text which is not explicitly marked
        std::string defaultLanguage() const  { return default_language; }
+       /// The quotation marks style
+       std::string quotesStyle() const { return h_quotes_style; }
        ///
        bool usePolyglossia() const;
        ///
@@ -78,6 +82,10 @@ public:
        ///
        void citeEngine(std::string const & e) { h_cite_engine = e; }
        ///
+       std::string multibib() const { return h_multibib; }
+       ///
+       void multibib(std::string const & s) { h_multibib = s; }
+       ///
        bool titleLayoutFound() const { return title_layout_found; }
        ///
        void titleLayoutFound(bool found) { title_layout_found = found; }
@@ -102,6 +110,12 @@ public:
        static const char * const polyglossia_languages[];
        /// the same as polyglossia_languages with .lyx names
        static const char * const coded_polyglossia_languages[];
+       ///
+       std::vector<std::string> biblatex_bibliographies;
+       ///
+       std::string bibencoding;
+       ///
+       std::string docencoding;
 
 private:
        ///
@@ -129,7 +143,11 @@ private:
 
        std::ostringstream h_preamble;
        std::string h_backgroundcolor;
+       std::string h_multibib;
        std::string h_biblio_style;
+       std::string h_biblio_options;
+       std::string h_biblatex_bibstyle;
+       std::string h_biblatex_citestyle;
        std::string h_bibtex_command;
        std::string h_boxbgcolor;
        std::string h_cite_engine;
@@ -154,7 +172,7 @@ private:
        std::string h_font_cjk;
        std::string h_use_microtype;
        std::string h_is_mathindent;
-       std::string h_math_number_before;
+       std::string h_math_numbering_side;
        std::string h_mathindentation;
        std::string h_graphics;
        std::string h_default_output_format;
@@ -215,7 +233,9 @@ private:
        std::map<std::string, std::string> h_use_packages;
        std::string h_use_default_options;
        std::string h_use_hyperref;
+       std::vector<std::string> h_includeonlys;
        bool h_use_refstyle;
+       bool h_use_minted;
 
        /*!
         * Add package \p name with options \p options to used_packages.
@@ -238,6 +258,8 @@ private:
        AuthorList authors_;
        /// special table column types
        std::map<char, int> special_columns_;
+       ///
+       std::map<std::string, std::string> extra_package_options_;
 };