mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
DocBook: fixes in bibliography (missing new line at the end).
This commit is contained in:
parent
6688b076cc
commit
c3aa843da8
@ -12,8 +12,9 @@
|
|||||||
<para>I am an abstract</para>
|
<para>I am an abstract</para>
|
||||||
<para>I am also an abstract</para>
|
<para>I am also an abstract</para>
|
||||||
</abstract>
|
</abstract>
|
||||||
|
|
||||||
</info>
|
</info>
|
||||||
<section xml:id="sec.Sec-1-0">
|
<section xml:id="sec.Sec-1">
|
||||||
<title>I am the first section </title>
|
<title>I am the first section </title>
|
||||||
<para>I am the first paragraph of the first section. </para>
|
<para>I am the first paragraph of the first section. </para>
|
||||||
<para>I am the second paragraph of the first section. </para>
|
<para>I am the second paragraph of the first section. </para>
|
||||||
@ -50,7 +51,7 @@
|
|||||||
<section>
|
<section>
|
||||||
<title>I am the second section </title>
|
<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> “Text between quotes.”</para>
|
<para>I am the only paragraph of the second section. <link xlink:href="http://example.org">Hyperlink.</link> “Text between quotes.”</para>
|
||||||
<para>See <xref linkend="sec.Sec-1-0" />.</para>
|
<para>See <xref linkend="sec.Sec-1" />.</para>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<title>I am the third section and I deal with star sections</title>
|
<title>I am the third section and I deal with star sections</title>
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
<title>William Shakespeare</title>
|
<title>William Shakespeare</title>
|
||||||
<section>
|
<section>
|
||||||
<title>Publications</title>
|
<title>Publications</title>
|
||||||
<bibliography>First Folio. Me. 1623..</bibliography>
|
|
||||||
</section>
|
</section>
|
||||||
|
<bibliography>
|
||||||
|
<bibliomixed xml:id='firstref'>First Folio. Me. 1623..</bibliomixed>
|
||||||
|
</bibliography>
|
||||||
</article>
|
</article>
|
@ -1411,6 +1411,7 @@ void InsetBibtex::docbook(XMLStream & xs, OutputParams const &) const
|
|||||||
|
|
||||||
// Footer for bibliography.
|
// Footer for bibliography.
|
||||||
xs << xml::EndTag("bibliography");
|
xs << xml::EndTag("bibliography");
|
||||||
|
xs << xml::CR();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user