lilypond-user
[Top][All Lists]
Advanced

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

Re: Ties across different voices?


From: Rutger Hofman
Subject: Re: Ties across different voices?
Date: Wed, 8 Jun 2016 13:36:37 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0

On 06/07/2016 09:15 PM, Joshua Nichols wrote:
I've run into the need to do this, and I can't quite figure out how to
make it happen. Please see the attached image.

Basically, for those who can't load it, I want to create a tie from a
"chord" into a "new voice." It's fairly common in classical literature,
but I am wondering if this is possible even, or yet.

Ties into chords from chords/notes that only share part of the chord notes already do exactly what you appear to need. No trickery (hidden notes to cross voices etc) is necessary here:

\new Staff <<
    {
        d''1~ |
        d''1~ |
        <a' d''>2 <g' c''> |
    } \\ {
        d'1~ |
        d'1~ |
        d'1 |
    }
>>

If you prefer, you can avoid the '\\' syntax by using
<<
   {
       \voiceOne
       % notes for upper voice
   }
   \new Voice {
       \voiceTwo
       % notes for lower voice
   }
>>

Rutger



reply via email to

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