]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/time-signature-in-parentheses.ly
57b3cb23808a3fb1608a0d54b43a0dacbf2fd883
[lilypond.git] / Documentation / snippets / time-signature-in-parentheses.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "specific-notation, tweaks-and-overrides, staff-notation"
11
12 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
13   texidocfr = "
14 Une métrique peut être mise entre parenthèses.
15
16 "
17   doctitlefr = "Métrique entre parenthèses"
18
19   texidoc = "
20 The time signature can be enclosed within parentheses.
21
22 "
23   doctitle = "Time signature in parentheses"
24 } % begin verbatim
25
26
27 \relative c'' {
28   \override Staff.TimeSignature #'stencil = #(lambda (grob)
29     (bracketify-stencil (ly:time-signature::print grob) Y 0.1 0.2 0.1))
30   \time 2/4
31   a4 b8 c
32 }
33