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
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to