lilypond-user
[Top][All Lists]
Advanced

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

Re: Large Time Signatures Within Staves?


From: Lukas-Fabian Moser
Subject: Re: Large Time Signatures Within Staves?
Date: Fri, 18 May 2018 17:03:27 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0


When I increase the grob, how (or can?) I adjust it on the fly for certain pages if the distance between instruments change for layout reasons? Otherwise the grob would look 'off'.

Something like that?

\version "2.19.80"

noTimeSig = { \omit TimeSignature }
largeTimeSig = {
  \numericTimeSignature
  \override Staff.TimeSignature.font-size = 9
}

\new StaffGroup <<
  \new Staff \with \noTimeSig {
    \repeat unfold 25 d''4
  }
  \new Staff \with \largeTimeSig {
    \repeat unfold 24 d''4
    \once\override Staff.TimeSignature.extra-offset = #'(0 . 4)
    d''4

  }
  \new Staff \with \noTimeSig {
    \repeat unfold 25 d''4
  }
  \new Staff \with \noTimeSig {
    \repeat unfold 25 d''4
  }
  \new Staff \with \noTimeSig {
    \repeat unfold 25 d''4
  }
  \new Staff \with \largeTimeSig {
    \repeat unfold 12 d''4
    \once\override Staff.TimeSignature.extra-offset = #'(0 . -4)
    \time 3/2
    \repeat unfold 12 d''4
    \time 4/4
    d''4
  }
  \new Staff \with \noTimeSig {
    \repeat unfold 25 d''4
  }
>>

Best
Lukas



reply via email to

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