]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Use ASCII number in \char definition
[lyx.git] / src / BufferParams.h
index 5083b68ee84c970d502ddb6fd25f08d3abcd4be8..405a54e7484e2aa1e66ac81faeee7f6ecbdd22cb 100644 (file)
@@ -378,8 +378,14 @@ public:
        void use_package(std::string const & p, Package u);
        /// All packages that can be switched on or off
        static std::map<std::string, std::string> const & auto_packages();
+       /// Do we use the bibtopic package?
+       bool useBibtopic() const;
        /// Split bibliography?
-       bool use_bibtopic;
+       bool splitbib() const { return use_bibtopic; }
+       /// Set split bibliography
+       void splitbib(bool const b) { use_bibtopic = b; }
+       /// Do we have multiple bibliographies (by chapter etc.)?
+       std::string multibib;
        /// Split the index?
        bool use_indices;
        /// Save transient properties?
@@ -552,6 +558,8 @@ private:
        CiteEngineType cite_engine_type_;
        /// the default BibTeX style file for the document
        std::string biblio_style;
+       /// Split bibliography?
+       bool use_bibtopic;
        ///
        DocumentClassPtr doc_class_;
        ///