lilypond-user
[Top][All Lists]
Advanced

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

Re: Ties over 2 voices


From: eluze
Subject: Re: Ties over 2 voices
Date: Thu, 13 May 2010 00:52:30 +0200
User-agent: Opera Mail/10.53 (Win32)

Am 13.05.2010, 00:01 Uhr, schrieb Neil Puttock <address@hidden>:

On 12 May 2010 15:27, Phil Holmes <address@hidden> wrote:

Problem with this is that the unbeamed note in the second voice has a tail and not a beam, and so we get the result shown in the attached image, with a tail under the beaming. Also I still get the complaint about clashing note
columns.

If you keep the upper voice in \voiceOne, there will be no clashing columns:

\new Voice \relative c'' {
  \time 3/4
  r2
  <<
    {
      \voiceTwo
      a4 ~ |
      <a c>8
    }
    \new Voice
    {
      \voiceOne
      f'8 c ~ |
      \hideNotes
      c8
    }
  >>
  <a c>16 <a c>
}

Cheers,
Neil

thanks, Neil

and to re-establish the original beaming, you would have to use explicitly instanciated voices:


\new Staff \relative c'' {
  \time 3/4
  \new Voice = "1" {
    r2
    <<
      \context Voice = "1" {
        \voiceTwo
        a4 ~ |
        <a c>8[
      }
      \new Voice = "2" {
        \voiceOne
        f'8 c ~ |
        \hideNotes
        c8
      }
    >>
    <a c>16 <a c>]
  }
}



reply via email to

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