mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
parent
89f6de9835
commit
b77094a497
@ -12,6 +12,7 @@
|
||||
|
||||
#include "output_latex.h"
|
||||
|
||||
#include "BiblioInfo.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "Encoding.h"
|
||||
@ -1436,7 +1437,8 @@ void latexParagraphs(Buffer const & buf,
|
||||
|
||||
if (multibib_child && mparams.useBiblatex())
|
||||
os << "\\newrefsection";
|
||||
else if (multibib_child && mparams.useBibtopic()) {
|
||||
else if (multibib_child && mparams.useBibtopic()
|
||||
&& !buf.masterBibInfo().empty()) {
|
||||
os << "\\begin{btUnit}\n";
|
||||
runparams.openbtUnit = true;
|
||||
}
|
||||
@ -1546,7 +1548,8 @@ void latexParagraphs(Buffer const & buf,
|
||||
&& layout.latexname() == bparams.multibib) {
|
||||
if (runparams.openbtUnit)
|
||||
os << "\\end{btUnit}\n";
|
||||
if (!bparams.useBiblatex()) {
|
||||
if (!bparams.useBiblatex()
|
||||
&& !buf.masterBibInfo().empty()) {
|
||||
os << '\n' << "\\begin{btUnit}\n";
|
||||
runparams.openbtUnit = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user