mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-12 03:23:12 +00:00
parent
85cdab36c2
commit
8f5af7c453
@ -338,7 +338,7 @@ void InsetBibtex::latex(otexstream & os, OutputParams const & runparams) const
|
|||||||
if (style == "default")
|
if (style == "default")
|
||||||
style = buffer().params().biblio_style;
|
style = buffer().params().biblio_style;
|
||||||
|
|
||||||
if (!style.empty()) {
|
if (!style.empty() && !buffer().params().use_bibtopic) {
|
||||||
string base = normalizeName(buffer(), runparams, style, ".bst");
|
string base = normalizeName(buffer(), runparams, style, ".bst");
|
||||||
FileName const try_in_file =
|
FileName const try_in_file =
|
||||||
makeAbsPath(base + ".bst", buffer().filePath());
|
makeAbsPath(base + ".bst", buffer().filePath());
|
||||||
@ -377,7 +377,10 @@ void InsetBibtex::latex(otexstream & os, OutputParams const & runparams) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!db_out.empty() && buffer().params().use_bibtopic) {
|
if (!db_out.empty() && buffer().params().use_bibtopic) {
|
||||||
os << "\\begin{btSect}{" << db_out << "}\n";
|
os << "\\begin{btSect}";
|
||||||
|
if (!style.empty())
|
||||||
|
os << "[" << style << "]";
|
||||||
|
os << "{" << db_out << "}\n";
|
||||||
docstring btprint = getParam("btprint");
|
docstring btprint = getParam("btprint");
|
||||||
if (btprint.empty())
|
if (btprint.empty())
|
||||||
// default
|
// default
|
||||||
|
@ -56,6 +56,9 @@ What's new
|
|||||||
|
|
||||||
- Fix output of deleted citations in change tracking mode (bug 8806).
|
- Fix output of deleted citations in change tracking mode (bug 8806).
|
||||||
|
|
||||||
|
- Fix handling of multiple bibliography styles when using sectioned bibliography
|
||||||
|
(bug 9060).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
* USER INTERFACE
|
* USER INTERFACE
|
||||||
|
Loading…
Reference in New Issue
Block a user