lilypond-user
[Top][All Lists]
Advanced

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

Re: lyrics


From: Dmytro O. Redchuk
Subject: Re: lyrics
Date: Mon, 18 Aug 2008 16:29:01 +0300

---------- Forwarded message ----------
From: Dmytro O. Redchuk <address@hidden>
Date: 2008/8/18
Subject: Re: lyrics
To: Lara <address@hidden>


2008/8/18 Lara <address@hidden>:
> Hi,
> I have a song that has three parts, first with one line of text, then with two
> lines (and a repeat)and then again with one line.
So, you'd like to type three parts in sequence,
and add a lyrics to every part (second one should have two lines)?

Am i right?

If so, you can type two voices (of melody), first one for the first
and third part,
and second for the second part. And two lines of lyrics for the second part.

Like this, should work:

melody = \relative c'' {
       g a b c
       \new Voice = "second" {
               b a g f
       }
       e d c c
}


mainfirst = \lyricmode {
       \set stanza = "1. "
       c d e f
}
mainsecond = \lyricmode {
       \set stanza = "4. "
       g a b c
}
upperwords = \lyricmode {
       \set stanza = "2. "
       u u u u
}
lowerwords = \lyricmode {
       \set stanza = "3. "
       l l l l
}

\score {
   \new Staff = "tenor" <<
       \new Voice = "tenvoice" {
           \melody
       }
       \new Lyrics = tenlyr \lyricsto tenvoice
               { \mainfirst \mainsecond }
       % \context Lyrics = tenlyr \lyricsto tenvoice \mainsecond
       \new Lyrics = tenlyrup \with {
            alignAboveContext = tenlyr
       } \lyricsto second \upperwords
       \new Lyrics = tenlyrlo \with {
            alignBelowContext = tenlyr
       } \lyricsto second \lowerwords
      >>
  }

> Lara

--
Dmytro O. Redchuk



-- 
Dmytro O. Redchuk
http://brownian.org.ua/




reply via email to

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