On Wed, 2016-05-25 at 08:30 +0000, Charles Suncana wrote:
> global = {
>   
> }
> 
> violin = \relative c'' { \time 3/4 d4 e f | g f e | d2.\bar "|."
>   \global
>   % Music follows here.
>   
> }

This isn't the idea - you have emptied the \global and still not placed
the music after the comment "% Music follows here"
Instead keep the global = bit and put the music after that comment:

violin = \relative c'' {
   \global
   % Music follows here.
   d4 e f | g f e | d2.\bar "|."
}

Perhaps it should have said

% Put your music after this comment

then it might have been clear.

Richard



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

Reply via email to