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

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to