]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/time-signature-in-parentheses.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / time-signature-in-parentheses.ly
index cabd90c3feb59187349cb7eec01ffe8a923ebc0d..24d5bc4653f07d8ca6746cd900d04b216aa2f93a 100644 (file)
@@ -1,33 +1,26 @@
 %% 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.11.48"
 
-\header { texidoc = "
-You may put the time signature in parentheses.
-" }
-% begin verbatim
-tsMarkup = \markup  {
+\header {
+  lsrtags = "staff-notation, tweaks-and-overrides"
+
+  texidoc = "
+The time signature can be enclosed within parentheses.
+
+"
+  doctitle = "Time signature in parentheses"
+} % begin verbatim
+tsMarkup = \markup {
+  \override #'(baseline-skip . 0)
   \number {
-    \bracket \column { "2" "4" }
+    \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
-
-%}
-
+\relative c'' {
+  \override Staff.TimeSignature #'stencil = #ly:text-interface::print
+  \override Staff.TimeSignature #'text = #tsMarkup
   \time 2/4
-
-    a4 b8 c |
-  }
+  a4 b8 c
 }
-