X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBufferParams.h;h=30a157eb6fd93f5d967a8b2fac28f354c0baaaf0;hb=16d5c49b383841826d1bc563e2d392e12e497ed8;hp=30b65e061963bda3f6031ee605cdd83a50e740c9;hpb=f6d4bce12303a2f30ea129ee86e7f7d879668260;p=lyx.git diff --git a/src/BufferParams.h b/src/BufferParams.h index 30b65e0619..30a157eb6f 100644 --- a/src/BufferParams.h +++ b/src/BufferParams.h @@ -280,6 +280,8 @@ public: std::string fonts_cjk; /// use LaTeX microtype package bool use_microtype; + /// use font ligatures for en- and em-dashes + bool use_dash_ligatures; /// Spacing & spacing(); Spacing const & spacing() const; @@ -378,8 +380,14 @@ public: void use_package(std::string const & p, Package u); /// All packages that can be switched on or off static std::map 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? @@ -405,7 +413,7 @@ public: AuthorMap author_map_; /// the buffer's active font encoding - std::string const font_encoding() const; + std::string const main_font_encoding() const; /// all font encodings requested by the prefs/document/main language. /// This does NOT include font encodings required by secondary languages std::vector const font_encodings() const; @@ -463,7 +471,10 @@ public: std::vector citeStyles() const; /// Return the actual bibtex command (lyxrc or buffer param) - std::string const & bibtexCommand() const; + std::string const bibtexCommand() const; + + /// Are we using biblatex? + bool useBiblatex() const; /// Set the default BibTeX style file for the document void setDefaultBiblioStyle(std::string const & s){ biblio_style = s; } @@ -474,6 +485,13 @@ public: /// Check if a citation style is an alias to another style std::string getCiteAlias(std::string const & s) const; + /// Options of the bibiography package + std::string biblio_opts; + /// The biblatex bibliography style + std::string biblatex_bibstyle; + /// The biblatex citation style + std::string biblatex_citestyle; + /// options for pdf output PDFOptions & pdfoptions(); PDFOptions const & pdfoptions() const; @@ -542,6 +560,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_; ///