lilypond-user
[Top][All Lists]
Advanced

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

Re: Time signatures ¢¢ and cc


From: David Kastrup
Subject: Re: Time signatures ¢¢ and cc
Date: Sat, 18 Oct 2014 20:54:43 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)

Dan Eble <address@hidden> writes:

> Does anyone know how to reduce the spacing between glyphs in these
> custom time signatures?  I’ve tried overriding word-space.  I’ve tried
> \translate.  Neither had the desired effect.  Thanks.

\version "2.18.0"

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

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

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



-- 
David Kastrup




reply via email to

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