]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/time-signature-in-parentheses.ly
Imported Upstream version 2.12.3
[lilypond.git] / input / lsr / time-signature-in-parentheses.ly
index cabd90c3feb59187349cb7eec01ffe8a923ebc0d..c26a7a6802631d4a6ce19405ca6fe3346e4eb23a 100644 (file)
@@ -1,33 +1,21 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-%% Tags: staff-notation, tweaks-and-overrides
-\version "2.11.35"
+\version "2.12.3"
 
-\header { 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
+\header {
+  lsrtags = "staff-notation, tweaks-and-overrides"
 
-%{
+  texidoc = "
+The time signature can be enclosed within parentheses.
 
-  \override Staff.TimeSignature   #'print-function = #Text_interface::print
-  \override Staff.TimeSignature   #'text = #tsMarkup
-
-%}
+"
+  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
 }