lilypond-user
[Top][All Lists]
Advanced

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

Re: several short pieces with scored titles


From: Gilles THIBAULT
Subject: Re: several short pieces with scored titles
Date: Thu, 16 Aug 2007 17:16:48 +0200


I need to put a title with a score for several short pieces. Several pieces can fit on one page. I am able to put a score within a title at the top of the page
but can't do it for pieces that are not at the top the page.

I 'm not sure i understand all of the above but here is a solution which seems to work.
(I hope it is what you wanted) :

%%%%%%%%%%%%%%%%

\version "2.10.25"

\paper{
 printallheaders=##t
}


tuning = \markup {
   \score {
       \new Staff
            \with { \remove Time_signature_engraver }
           { d' }
   \layout { ragged-right = ##t }
  }
}

\score
{
    { a a a a }
    \header {
         subtitle = "D"
         subsubtitle = \markup {  \tuning }  }
}

tuning = \markup {
   \score {
       \new Staff
           \with {\remove Time_signature_engraver}
           { e''}
  \layout { ragged-right = ##t }
  }
}

\score
{
   { a a a a }
    \header {
       subtitle = "E"
       subsubtitle = \markup {  \tuning }  }
}

%%%%%%%%%%%%%

I only add :
- printallheaders=##t
-a score block for each score
-the \header  section seems to need to be after the notes datas.

Gilles





reply via email to

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