Peter Bjuhr <[email protected]> writes:

> On the other hand, this doesn't work:
>
> \version "2.17.28"
>
> A = \relative c'' {a4 b c a ~ }
>
> \score {
>   \new Staff
>   { \A \A }
> }

That's because each \A is in a Voice of its own.  Use an explicit Voice
to avoid independent implicit voices for each \A:

\score {
  \new Voice
  { \A \A }
}


-- 
David Kastrup


_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to