lilypond-user
[Top][All Lists]
Advanced

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

Re: How to tie the last note of one variable to the first note of anothe


From: Xavier Scheuer
Subject: Re: How to tie the last note of one variable to the first note of another variable?
Date: Mon, 24 Jan 2011 09:34:11 +0100

On 24 January 2011 07:53, Jürgen Ibelgaufts <address@hidden> wrote:
>
> hi,
>
> maybe I'm missing something. I did not try your solution, but I suppose it
> works fine. but how would you append lyrics? \addlyrics gives a syntax error
> (unexpected \addlyrics), and \lyricsto requires different named voice
> contexts in which I could not get your solution to work.

Why different named voice contexts?
I use a single voice, I can use a single  Lyrics \lyricsto .

This works fine:

\version "2.13.46"

partOne = \relative c' {
 c4 e g e~
}

partTwo = \relative c' {
 e1
 c4 e g e~
 e1
}

versePartOne = \lyricmode {
  ta ra ta taa
}

versePartTwo = \lyricmode {
  tu ru tu tuu
}


\score {
  <<
    \new Staff {
      \tempo 4 = 120
      \new Voice = "melody" {
        \partOne
        \partTwo
      }
    }
    \new Lyrics \lyricsto "melody" {
      \versePartOne
      \versePartTwo
    }
 >>
 \midi { }
 \layout {}
}


Cheers,
Xavier

-- 
Xavier Scheuer <address@hidden>



reply via email to

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