mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix bibliography output.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30054 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
21121f3fb5
commit
03e0c16e87
@ -224,11 +224,12 @@ ParagraphList::const_iterator makeBibliography(Buffer const & buf,
|
||||
ParagraphList::const_iterator const & pbegin,
|
||||
ParagraphList::const_iterator const & pend)
|
||||
{
|
||||
os << "<div class='bibliography'>\n"
|
||||
<< "<h2 class='bibliography'>"
|
||||
os << "<h2 class='bibliography'>"
|
||||
<< pbegin->layout().labelstring()
|
||||
<< "</h2>\n";
|
||||
makeParagraphs(buf, os, runparams, paragraphs, pbegin, pend);
|
||||
<< "</h2>\n"
|
||||
<< "<div class='bibliography'>\n";
|
||||
makeParagraphs(buf, os, runparams, paragraphs, pbegin, pend);
|
||||
os << "</div>";
|
||||
return pend;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user