lilypond-user
[Top][All Lists]
Advanced

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

Re: complex compound time signature: "fraction + note"


From: Nathan
Subject: Re: complex compound time signature: "fraction + note"
Date: Sat, 2 Jun 2012 14:04:20 -0700

On Sat, Jun 2, 2012 at 1:50 PM, Ezequiel Birman
<address@hidden> 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
> address@hidden
> 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



reply via email to

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