----- Original Message -----
> From: "Rip _Mus" <ripetizioni.mus...@gmail.com>
> To: "Lillypond Users Mailing List" <lilypond-user@gnu.org>
> Sent: Monday, March 21, 2022 8:51:16 AM
> Subject: Time signature guide

> Good morning,
> I would need advice.
> In a score with many time signature changes (where I therefore cannot use a
> stable global variable of tempo and time signature), there is a way to set
> a "guide" in which to set the various time signature changes, without "
> dirty "the instrumental variables?
> Perhaps there is some suitable context for this? Or other strategies?
> 
> Thank you very much
> 
> Rip_mus


Sure,

I've done this sort of thing to cope with frequent time changes:

%%%%%

\version "2.22.0"

global = {
  \time 4/4
  s1
  \time 7/8
  s8*7
  \time 15/16
  s16*15
}

melody = \relative c' {
  c4 d e f
  g8 a b c b a g
  f4 e d c8.
}

\score{
  <<
    {\global}
  \\ 
   {\melody}
  >>
}

%%%%%

Reply via email to