]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/time-signature-in-parentheses.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into kainhofer
[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 \version "2.11.38"
4
5 \header {
6   lsrtags = "staff-notation, tweaks-and-overrides"
7  texidoc = "
8 You may put the time signature in parentheses.
9 " }
10 % begin verbatim
11 tsMarkup = \markup  {
12  \override #'(baseline-skip . 2) \number {
13    \bracket \column { "2" "4" }
14  }
15 }
16
17 \score {
18  \relative c'' {
19  \override Staff.TimeSignature #'stencil = #ly:text-interface::print
20  \override Staff.TimeSignature   #'text = #tsMarkup
21  \time 2/4
22
23    a4 b8 c |
24  }
25 }