lilypond-user
[Top][All Lists]
Advanced

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

Re: variables tied with slurs


From: David Kastrup
Subject: Re: variables tied with slurs
Date: Sat, 28 Sep 2013 13:41:41 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Peter Bjuhr <address@hidden> 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




reply via email to

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