]> git.donarmstrong.com Git - lilypond.git/commitdiff
Improve output of LSR snippets in PDF.
authorWerner Lemberg <wl@gnu.org>
Sun, 15 Feb 2009 07:22:37 +0000 (08:22 +0100)
committerWerner Lemberg <wl@gnu.org>
Sun, 15 Feb 2009 07:22:37 +0000 (08:22 +0100)
lilypond-book.py (output_texinfo): Always put @lydoctitle into a separate
paragraph.

scripts/lilypond-book.py

index 56790819cd4498f49a5e7f9fae3b739735da6297..e851a40662c134302f7e5bb9508e1a103fd6e83f 100644 (file)
@@ -1476,9 +1476,9 @@ class LilypondSnippet (Snippet):
             doctitle = base + '.doctitle'
             translated_doctitle = doctitle + document_language
             if os.path.exists (translated_doctitle):
-                str += '@lydoctitle %s\n' % open (translated_doctitle).read ()
+                str += '@lydoctitle %s\n\n' % open (translated_doctitle).read ()
             elif os.path.exists (doctitle):
-                str += '@lydoctitle %s\n' % open (doctitle).read ()
+                str += '@lydoctitle %s\n\n' % open (doctitle).read ()
         if TEXIDOC in self.option_dict:
             texidoc = base + '.texidoc'
             translated_texidoc = texidoc + document_language