lilypond-user
[Top][All Lists]
Advanced

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

Re: Bug with tuples with rest?


From: Noeck
Subject: Re: Bug with tuples with rest?
Date: Fri, 2 Feb 2018 19:20:27 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0

Hi Markus,

you have a strange placement of  { and }.

> \version "2.18.2"
> 
> { { \relative c'' \tuplet 3/2 { r8( c8 d8) } e8 }
>   \addlyrics{ Bug? }
> }
> 
> 1) The text goes to the e while it should go to the tuplet

addlyrics tries to find the appropriate (closest?) voice to attach the
lyricsto. Thie e8 is the last voice in your music. I recommend to use
\new Lyrics and \lyricsto instead of \addlyrics.

> 2) The e is not an e''

The relative only affects the tuplet, you need { … } around the other
notes if you want to include them.

This makes more sense:

\relative c'' {
  \tuplet 3/2 { r8( c8 d8) } e8
}


Best,
Joram



reply via email to

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