X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Flsr%2Ftime-signature-in-parentheses.ly;h=3ccc977a76ceecf57bf14d1786c334071d5afd00;hb=f26ba98bff8314bf0b379d3eea7fb3bee7e31dc3;hp=db9ee9eeddfec7b10b3008d7e5465b0f0dc660df;hpb=caff9e8768f78cf6d183f8dad640e64e62b28fd4;p=lilypond.git diff --git a/input/lsr/time-signature-in-parentheses.ly b/input/lsr/time-signature-in-parentheses.ly index db9ee9eedd..3ccc977a76 100644 --- a/input/lsr/time-signature-in-parentheses.ly +++ b/input/lsr/time-signature-in-parentheses.ly @@ -1,34 +1,19 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" +\version "2.11.53" \header { lsrtags = "staff-notation, tweaks-and-overrides" - texidoc = " -You may put the time signature in parentheses. -" } -% begin verbatim -tsMarkup = \markup { - \number { - \bracket \column { "2" "4" } - } -} - -\score { - \relative c'' { - -% FIXME: Gee, it doesn't work with 2.10 -vv - -%{ - \override Staff.TimeSignature #'print-function = #Text_interface::print - \override Staff.TimeSignature #'text = #tsMarkup - -%} + texidoc = " +The time signature can be enclosed within parentheses. +" + doctitle = "Time signature in parentheses" +} % begin verbatim +\relative c'' { + \override Staff.TimeSignature #'stencil = #(lambda (grob) + (bracketify-stencil (ly:time-signature::print grob) Y 0.1 0.2 0.1)) \time 2/4 - - a4 b8 c | - } + a4 b8 c } -