On Mon, Jan 12, 2015 at 05:25:55PM -0600, Cynthia Karl wrote:
> The following snippet:
>
> \version "2.19.15"
>
> music = \relative c'' { e2 g, }
>
> \score {
> \new Staff << \key c \major \music >>
> \layout {
> \context { \Voice \consists "Ambitus_engraver" }
> }
> }
Your Staff line is equivalent to:
\new Staff
<<
{ \key c \major }
{ \music }
>>
Thus, there is no music in the first expression. In a nutshell, that
is what is causing your issue.
...
> * replace "<<...>>" with {...} on the \new Staff statement.
...
That is the correct solution, IMO.
HTH,
Jim
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user