]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/time-signature-in-parentheses---method-3.ly
b64120e7b0c9fbffdf17aaf7ca14b2f5effee42f
[lilypond.git] / Documentation / snippets / time-signature-in-parentheses---method-3.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 Autre manière de mettre la métrique entre parenthèses.
15
16 "
17   doctitlefr = "Métrique entre parenthèses - méthode 3"
18
19   texidoc = "
20 Another way to put the time signature in parenthesis
21
22 "
23   doctitle = "Time signature in parentheses - method 3"
24 } % begin verbatim
25
26
27 \relative c'' {
28   \override Staff.TimeSignature #'stencil = #(lambda (grob)
29     (parenthesize-stencil (ly:time-signature::print grob) 0.1 0.4 0.4 0.1 ))
30   \time 2/4
31   a4 b8 c
32 }