]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/time-signature-in-parentheses.ly
cabd90c3feb59187349cb7eec01ffe8a923ebc0d
[lilypond.git] / input / lsr / time-signature-in-parentheses.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: staff-notation, tweaks-and-overrides
4 \version "2.11.35"
5
6 \header { texidoc = "
7 You may put the time signature in parentheses.
8 " }
9 % begin verbatim
10 tsMarkup = \markup  {
11   \number {
12     \bracket \column { "2" "4" }
13   }
14 }
15
16 \score {
17   \relative c'' {
18
19 % FIXME: Gee, it doesn't work with 2.10 -vv
20
21 %{
22
23   \override Staff.TimeSignature   #'print-function = #Text_interface::print
24   \override Staff.TimeSignature   #'text = #tsMarkup
25
26 %}
27
28   \time 2/4
29
30     a4 b8 c |
31   }
32 }
33