]> git.lyx.org Git - features.git/blobdiff - src/LaTeXFeatures.C
add bibtopic support (bug 870).
[features.git] / src / LaTeXFeatures.C
index f01df1577ae1bceb3c118a38665582e4dfa24081..9120330be01930af27c54fd19dffa89ab7afda05 100644 (file)
@@ -306,6 +306,12 @@ string const LaTeXFeatures::getPackages() const
                }
                packages << "]{natbib}\n";
        }
+       
+       // bibtopic -- the dot provides the aux file naming which
+       // LyX can detect.
+       if (isRequired("bibtopic")) {
+               packages << "\\usepackage[dot]{bibtopic}\n";
+       }
 
        return packages.str();
 }