lilypond-user
[Top][All Lists]
Advanced

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

Re: Custom TimeSignature doesn't scale correctly


From: Karol Majewski
Subject: Re: Custom TimeSignature doesn't scale correctly
Date: Thu, 16 Jul 2015 21:16:11 +0200

Paul, I,ve came up with this, but it doesn't help. Is setting baseline-skip to 
0 only way?

%%%% BEGIN %%%%

#(define
  (customTimeSignature grob)
  (let*
    ((sz
        (ly:grob-property grob 'font-size 0.0))
        (mult (magstep sz))
    (fraction
        (ly:grob-property grob 'fraction))
      (num
        (car fraction))
      (denom
        (cdr fraction)))
    (grob-interpret-markup grob #{
      \markup {
         \translate #'(0 . 0.03) \override #'(font-name . "Times") \fontsize 
#2.5 \override #'(baseline-skip . 2) \center-column {
          \line {
            #(number->string num)
          }
          \line {
            #(number->string denom)
          }
        }
      }
    #})))


%%%% END %%%%





reply via email to

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