lilypond-user
[Top][All Lists]
Advanced

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

Re: chord/lyric lead sheet


From: wjm
Subject: Re: chord/lyric lead sheet
Date: Sun, 19 Aug 2012 11:58:24 +1200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0

You wrote:-
+++++++++++++++++++++++++++++++
> Hi, as a songwriter that sings/plays, I often want to put together
> rough lead sheets that communicate chords/lyrics/structure as a
> memory aid, or to give to backup musicians.
++++++++++++++++++++++++++++++++

Hi Curt,
After a bit of tinkering with your second code, and constant reference to the Notation Reference, :) I have come up with the following which does, I 'think', do what you require. Note the settings for raggedness in the \paper block, and the relocation of \textLengthOn.
I hope this helps
Regards
Bill
++++++++++++++++++++++++++++++++++++++++++++++++++++
\version "2.15.43"
\language "english"
\paper {
  left-margin = 25
    ragged-right = ##t
     ragged-last = ##f
}
chordSymbols = \chordmode
{
fs1:maj7 fs:maj7/e g:sus4 f e   
}

songLyrics = \lyricmode
{
        "My small girl of five wants a"1
        "story good-night she likes"
        "kittens and pebbles and"
        "fairies asleep in the"
        "trees"
}

slash = \relative { \textLengthOn b1 }

\score
{
<<
\new ChordNames { \chordSymbols }
<<
\new Staff
\with { \remove Note_heads_engraver }
{ \repeat unfold 5 \slash  }    
\new Lyrics { \songLyrics }
>>
>>
\layout { indent = 0 }
}
++++++++++++++++++++++++++++++++++++++++++++++++++



reply via email to

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