DocBook: fixes in bibliography (missing new line at the end).

This commit is contained in:
Thibaut Cuvelier 2020-08-30 22:08:01 +02:00
parent 6688b076cc
commit c3aa843da8
3 changed files with 7 additions and 4 deletions

View File

@ -12,8 +12,9 @@
<para>I am an abstract</para>
<para>I am also an abstract</para>
</abstract>
</info>
<section xml:id="sec.Sec-1-0">
<section xml:id="sec.Sec-1">
<title>I am the first section </title>
<para>I am the first paragraph of the first section. </para>
<para>I am the second paragraph of the first section. </para>
@ -50,7 +51,7 @@
<section>
<title>I am the second section </title>
<para>I am the only paragraph of the second section. <link xlink:href="http://example.org">Hyperlink.</link> &#8220;Text between quotes.&#8221;</para>
<para>See <xref linkend="sec.Sec-1-0" />.</para>
<para>See <xref linkend="sec.Sec-1" />.</para>
</section>
<section>
<title>I am the third section and I deal with star sections</title>

View File

@ -5,7 +5,8 @@
<title>William Shakespeare</title>
<section>
<title>Publications</title>
<bibliography>First Folio. Me. 1623..</bibliography>
</section>
<bibliography>
<bibliomixed xml:id='firstref'>First Folio. Me. 1623..</bibliomixed>
</bibliography>
</article>

View File

@ -1411,6 +1411,7 @@ void InsetBibtex::docbook(XMLStream & xs, OutputParams const &) const
// Footer for bibliography.
xs << xml::EndTag("bibliography");
xs << xml::CR();
}