]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Fix font of macro template name
[lyx.git] / src / BufferParams.h
index 30b65e061963bda3f6031ee605cdd83a50e740c9..5083b68ee84c970d502ddb6fd25f08d3abcd4be8 100644 (file)
@@ -463,7 +463,10 @@ public:
        std::vector<CitationStyle> 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 +477,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;