lilypond-user
[Top][All Lists]
Advanced

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

Re: Turn lead sheet into a blank staff


From: peter
Subject: Re: Turn lead sheet into a blank staff
Date: Wed, 24 Apr 2019 11:45:11 +1000
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/26 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)


Sandro> I'm producing lead sheets with lyrics, melody and chords
Sandro> and would like to extract from them som blank sheets with
Sandro> just lyrics and chords so that players can take their notes
Sandro>  (for solos or arrangements).

You could always just put an empty stave in parallel with the one
with the tune on it.

Thus:

\version "2.19.0"

global = {
  \time 3/4
  \key es \major
  \repeat unfold 4 {
    s2. |
  }
  \bar "|."
}

words=\lyricmode {
  All things shall per -- ish from un -- der the sky.
}

tune = \relative c'' {
  as4 as as |
  g4. as8 bes4 |
  bes, c d |
  es2.
}

\score {
  <<
    \new Staff << \global >>
    \new Staff <<
      \global
      \context Voice = tune { \tune }
    >>
     \lyricsto tune { \context Lyrics \words }
  >>
}




reply via email to

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