On 6/8/2021 2:59 PM, Ignacio Lois wrote:
Yes, I've seen that and it's certainly a possibility, but I'm hoping to achieve something like this <https://www.scoringnotes.com/wp-content/uploads/2016/08/film-score.png>.

On Tue, Jun 8, 2021 at 3:35 AM Xavier Scheuer <x.sche...@gmail.com <mailto:x.sche...@gmail.com>> wrote:

    On Mon, 7 Jun 2021 at 21:55, Ignacio Lois <ignaciol...@gmail.com
    <mailto:ignaciol...@gmail.com>> wrote:
    >
    > Can this be done simply? Those large time signatures that are as
    tall as each section. I've been browsing the snippets to no avail.
    >
    > If this has to be done from scratch, how would you approach it?
    >
    > Thanks

    Hello,

    https://lsr.di.unimi.it/LSR/Item?id=272
    <https://lsr.di.unimi.it/LSR/Item?id=272>
    Maybe?

    Cheers,
    Xavier

-- Xavier Scheuer <x.sche...@gmail.com <mailto:x.sche...@gmail.com>>

Hi Ignacio,

I use this approach sometimes when I need that style choice:

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
   }
 >>

Reply via email to