lilypond-user
[Top][All Lists]
Advanced

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

Re: Tuplet notehead shared with non-tuplet notehead in another voice?


From: David Kastrup
Subject: Re: Tuplet notehead shared with non-tuplet notehead in another voice?
Date: Mon, 24 Mar 2014 10:26:39 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)

Thomas Scharkowski <address@hidden> writes:

> Hallo list,
>
> I'd like the second note in voice one to share the notehead with the
> last one in voice two. This is quite common in 19th century guitar
> music.
> Thank you,
> Thomas
>
> \version "2.19.3"
> {
>   \relative c'' {
>   \time2/8
>   <<
>   {
>     c8..[ c32]
>   }
>   \\
>   {
>     \tuplet 3/2 8 {
>     c,16 e g e g c
>     }
>   }
>   >>
>   }
> }

Well, the durations of the first voice then simply are _wrong_.  If you
want them to merge with the second voice, you need to scale them to
fit.  I've not put this into shortest terms so that one can still figure
out that the scales come from a mismatch of a 5/6 to 7/8 division and
1/6 to 1/8.  But you could equally well write

c8..*20/21[ c32*4/3]

in the first voice.  Who said that music and mathematics are different
things?

\version "2.19.3"
{
  \relative c'' {
  \time2/8
  <<
  {
    c8..*5/6*8/7[ c32*1/6*8/1]
  }
  \\
  {
    \tuplet 3/2 8 {
    c,16 e g e g c
    }
  }
  >>
  }
}


-- 
David Kastrup



reply via email to

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