lilypond-user
[Top][All Lists]
Advanced

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

Re: Tie into top voice of multiple voices


From: Simon Albrecht
Subject: Re: Tie into top voice of multiple voices
Date: Sat, 1 Apr 2017 02:55:14 +0200

Am 01.04.2017 um 00:53 schrieb Mike Dean:
Having a hard time querying about this:
\version "2.19.42"

{
% not at all sure how to resolve the warning about a unresolved tie:
<d d'> b''8 as b2->~ |
<< {b1~\repeatTie | b4} \\ 
{ <ds, fs>-. <e g> <fs a> <b, fs'> | <e g>} >> e'8 ds e2 |

}

The << {} \\ {} >> construct creates two new voices. Thus, the second b is in another voice than the first. If you use
<< {} \new Voice {} >> instead, the first {} will be the continuation of the previously active voice:

\version "2.19.42"

{
  <d d'> b''8 as b2->~ |
  <<
    {
      \voiceOne
      b1~ |
      b4
    }
    \new Voice {
      \voiceTwo
      <ds, fs>-. <e g> <fs a> <b, fs'> |
      <e g>
    }
  >>
  e'8 ds e2 |
}

I reformatted the code according to common and quite useful standards.

Best, Simon

reply via email to

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