]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/time-signature-in-parentheses.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4
5 \header {
6   lsrtags = "staff-notation, tweaks-and-overrides"
7
8   texidoc = "
9 The time signature can be enclosed within parentheses.
10
11 "
12   doctitle = "Time signature in parentheses"
13 } % begin verbatim
14 tsMarkup = \markup {
15   \override #'(baseline-skip . 2) \number {
16     \bracket \column { 2 4 }
17   }
18 }
19
20 \relative c'' {
21   \override Staff.TimeSignature #'stencil = #ly:text-interface::print
22   \override Staff.TimeSignature #'text = #tsMarkup
23   \time 2/4
24   a4 b8 c
25 }