]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
Fix font of macro template name
[lyx.git] / src / BufferParams.h
index 874860006b24e9939f975bfb873b090a35e14258..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; }
@@ -471,6 +474,15 @@ public:
        std::string const & defaultBiblioStyle() const;
        /// whether the BibTeX style supports full author lists
        bool const & fullAuthorList() const;
+       /// 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();