mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
tex2lyx: do not force default bibliography style if none is set
Some classes provide a \bibliographystyle, so we must not output any \bibliographystyle if none is set in the TeX file. Fixes: #10673
This commit is contained in:
parent
224e56c935
commit
ed331bedd6
@ -2477,7 +2477,9 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
|
|||||||
// nocite{*} option (needed for bibtex inset)
|
// nocite{*} option (needed for bibtex inset)
|
||||||
string btprint;
|
string btprint;
|
||||||
string contentslineContent;
|
string contentslineContent;
|
||||||
string bibliographystyle = "default";
|
// Some classes provide a \bibliographystyle, so do not output
|
||||||
|
// any if none is explicitly set.
|
||||||
|
string bibliographystyle;
|
||||||
bool const use_natbib = isProvided("natbib");
|
bool const use_natbib = isProvided("natbib");
|
||||||
bool const use_jurabib = isProvided("jurabib");
|
bool const use_jurabib = isProvided("jurabib");
|
||||||
string last_env;
|
string last_env;
|
||||||
|
Loading…
Reference in New Issue
Block a user