From bddcc2bc3ee7478c7683cab21bb2cd911e22fee2 Mon Sep 17 00:00:00 2001 From: matsb Date: Tue, 4 Oct 2005 12:33:28 +0000 Subject: [PATCH] * scripts/lilypond-book.py: Bug fix, put the quote around the actual score for LaTeX documents. --- ChangeLog | 3 +++ scripts/lilypond-book.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 96d0425b9a..dd8aca8edb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-10-04 Mats Bengtsson + * scripts/lilypond-book.py: Bug fix, put the quote around the + actual score for LaTeX documents. + * scm/define-grobs.scm (all-grob-descriptions): Change collapse-height of the SystemStartBracket grob to 5.0, so the bracket disappears for single stave score lines (similarly diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index eb4f4617ca..1e14b596e0 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -1051,10 +1051,10 @@ class Lilypond_snippet (Snippet): if VERBATIM in self.option_dict: verb = self.substring ('code') str += (output[LATEX][VERBATIM] % vars ()) - if QUOTE in self.option_dict: - str = output[LATEX][QUOTE] % vars () str += (output[LATEX][OUTPUT] % vars ()) + if QUOTE in self.option_dict: + str = output[LATEX][QUOTE] % vars () return str def output_print_filename (self, format): -- 2.39.5