On Sat, Jun 2, 2012 at 1:50 PM, Ezequiel Birman
<stormwa...@espiga4.com.ar> wrote:
> I am using http://lsr.dsi.unimi.it/LSR/Item?id=743 to type compund time
> signatures but in order to copy a score accurately, I need to be able to
> write the fraction plus a note glyph.
>
> For example:
>
> \compoundMeter #'((5 4) (1 8)) yelds "5/4 + 1/8"
>
> But i need "5/4 + <eight-note-glyph>"
>
> I tried to modify the code myself but this is way beyond my skills.
>
> --
> Ezequiel Birman
>
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

In 2.14.2:

\new Staff {
  \once \override Staff.TimeSignature #'stencil =
    #(lambda (grob)
       (grob-interpret-markup grob
         (markup
           #:override '(baseline-skip . 0) #:number (#:column ("5" "4"))
           #:vcenter "+"
           #:raise 1 #:note "8" -1.1)))
  \time 11/8
  \set Score.beatStructure = #'(2 2 2 2 2 1)
  % Placeholder music -- alter beatStructure if you don't like this beaming
  \repeat unfold 11 c'8
}

Sadly, I don't have the time or skill to make this into an automated
Scheme function. Hope this helps!

Regards,
Nathan

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

Reply via email to