bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

score-level headers made global


From: Nicolas Sceaux
Subject: score-level headers made global
Date: Fri, 12 Aug 2005 12:03:56 +0200
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin)

Using LilyPond from CVS.
In the following example, the two pieces get wrong titling:

piece 1          opus 2
=======================

piece 1          opus 2
=======================

instead of:

piece 1          opus 1
=======================

                 opus 2
=======================

If the first (book level) \header block is removed, then the two score
titles are OK.

\version "2.7.5"
\header {
    tagline = ""
    copyright = ""
}

\score {
  { c'1 }
  \header {
    piece = "piece 1"
    opus = "opus 1"
  }
}

\score {
  { d'1 }
  \header {
    opus = "opus 2"
  }
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]