> On Oct 18, 2014, at 14:48 , Kieren MacMillan <kieren_macmil...@sympatico.ca> 
> wrote:
> 
>> Does anyone know how to reduce the spacing between glyphs in these
>> custom time signatures?
> 
>     #{ \markup \concat { \musicglyph #"timesig.C22" \musicglyph 
> #"timesig.C22" } #}))

> Hope this helps!

Lovely! Thank you! And with just a little space it’s even better:

\version "2.18.0"

timeTwoOne = {
  \once \override Staff.TimeSignature.stencil =
  #(lambda (grob)
     (grob-interpret-markup grob
      #{ \markup \concat {
           \musicglyph #"timesig.C22"
           \hspace #0.25
           \musicglyph #"timesig.C22" } #}))
  \time 2/1
}

timeFourTwo = {
  \once \override Staff.TimeSignature.stencil =
  #(lambda (grob)
    (grob-interpret-markup grob
     #{ \markup \concat {
          \musicglyph #"timesig.C44"
          \hspace #0.25
          \musicglyph #"timesig.C44" } #}))
  \time 4/2
}

\relative c' {
  \timeTwoOne c\breve
  \time 2/2 c1
  \timeFourTwo c\breve
  \time 4/4 c1
}


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

Reply via email to