lilypond-devel
[Top][All Lists]
Advanced

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

multiple header again


From: Ishizaki
Subject: multiple header again
Date: Sat, 6 Aug 2005 19:14:32 +0900

Hello , just for info.

I noticed today that I embuged current CVS tree by my patch.
The following sample does not work as it should, the header in 2nd score block 
overrides header in 1st score block , so you will see two "2nd movement" instead
of "1st movement" then "2nd movement".

I've not yet found how to fix this, sorry.

------------------------------------------------------------------------
|                         Yoshinobu Ishizaki                           |
|                http://www2c.biglobe.ne.jp/~isizaki/                  |
------------------------------------------------------------------------


\version "2.7.0"

\header {
  title = "title"
  subtitle = "subtitle"
  opus = "opus No."
  composer = "composer"
  dedication = "dedication"
  arranger = "arranger"
  instrument = "instrm"
}

\book{
  \score {
    \new Staff <<
       \new Voice \relative c' {
        c d e f
      }
    >>
    \header {
      piece = "1st movement"
    }
    \layout{}
  }
  %%
  \score {
    \new Staff <<
       \new Voice \relative c' {
         g a b c
      }
    >>
    \header {
      piece = "2nd Movement"
      opus = ""
    }
    \layout{}
  }
}





reply via email to

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