lilypond-user
[Top][All Lists]
Advanced

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

Re: Time signature at end of score.


From: Richard Shann
Subject: Re: Time signature at end of score.
Date: Wed, 25 May 2016 09:44:18 +0100

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





reply via email to

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