lilypond-user
[Top][All Lists]
Advanced

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

Re: Lyrics to rests?


From: Mats Bengtsson
Subject: Re: Lyrics to rests?
Date: Tue, 20 May 2008 11:31:29 +0200
User-agent: Thunderbird 2.0.0.5 (X11/20070716)



Valentin Villenave wrote:

\addlyrics {
 "1" "+ 2 " "+" "3" "4" | "1" "+ 2 +" "3   4"
}

You are using explicit durations here;

No! The \addlyrics construct copies the durations from the music, i.e. any durations specified
explicitly in the lyrics are ignored.

The simplest way I can think of to align a syllable with a rest is to add an invisible note in parallel
with the rest, which the lyrics can align to:
\version "2.11"

\new RhythmicStaff {
  \override Score.StaffSymbol #'stencil = ##f
  f8 f4 f8 f4 f | <<r8 {\hideNotes c8 \unHideNotes } >> f4. f2 |
}

\addlyrics {
 "1" "+ 2 " "+" "3" "4" | "1" "+ 2 +" "3   4"
}

An alternatative is to do what Valentin hinted at, namely to not use \addlyrics but rather
use explicit durations for each syllable.

  /Mats




reply via email to

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