lilypond-user
[Top][All Lists]
Advanced

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

Re: Time signatures ¢¢ and cc


From: Dan Eble
Subject: Re: Time signatures ¢¢ and cc
Date: Sat, 18 Oct 2014 21:02:33 -0400

> On Oct 18, 2014, at 14:48 , Kieren MacMillan <address@hidden> 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
}




reply via email to

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