lilypond-user
[Top][All Lists]
Advanced

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

Re: timing, lyrics, chords, melody


From: Grammostola Rosea
Subject: Re: timing, lyrics, chords, melody
Date: Thu, 07 Aug 2008 11:29:48 +0200
User-agent: Mozilla-Thunderbird 2.0.0.14 (X11/20080509)

Mats Bengtsson wrote:


Morten Lemvigh wrote:

Try to have a look at the documentation concerning lyrics and vocal music:
http://lilypond.org/doc/v2.10/Documentation/user/lilypond/Vocal-music
I would rather recommend to read in the Learning Manual for the latest development version of LilyPond. Almost all the information you can find there is applicable also to version 2.10 and the text has been significantly revised and improved. In particular, take a look at http://lilypond.org/doc/v2.11/Documentation/user/lilypond-learning/Songs#Songs

The Lyrics should be associated with a "Voice":

\new Staff {
  \new Voice = "melodyVoice" {\melody}
}

\new Lyrics \lyricsto "melodyVoice"  \text
In this particular example, using \addlyrics is an even simpler option (see "Setting simple songs" in the Learning Manual), but otherwise I agree that it's a good idea to learn about \lyricsto as soon as possible since you will need it sooner or later anyway.

    /Mats

Thanks for your comments. \addlyrics works now.. I've to take a better look at \lyricsto. This is it now:

\version "2.11.53"

melody =
<<
        \relative c' {
   \clef treble
   \key c \major
   \time 4/4
   \partial 2
   \autoBeamOn
r4 g8 a | c c d a c c d e | f f f e | e d d4 | e8 e f e | e d e d c2
    }
    \addlyrics {When I find my -self in times of trou -ble,
   Mo -ther Ma -ry comes  to me,
   Spea -king words of wish -dom let it be
    }
 >>
harmony = \chordmode { r2 c2 g
   a:min f4:maj7 f4:6
   c2 g f8:maj7 f:6 c2
}

\score {
   <<
\new ChordNames {
       \set chordChanges = ##t
   \harmony}
\new Staff {\melody
}
>>
}


\layout { }
\midi { }





reply via email to

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