]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/time-signature-in-parentheses.ly
Add a TODO comment re grace note spacing.
[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.35"
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   \number {
13     \bracket \column { "2" "4" }
14   }
15 }
16
17 \score {
18   \relative c'' {
19
20 % FIXME: Gee, it doesn't work with 2.10 -vv
21
22 %{
23
24   \override Staff.TimeSignature   #'print-function = #Text_interface::print
25   \override Staff.TimeSignature   #'text = #tsMarkup
26
27 %}
28
29   \time 2/4
30
31     a4 b8 c |
32   }
33 }
34