]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/measure-counter.ly
3bd18201b188d1ea9f51a5910d3b9c33b85fc141
[lilypond.git] / input / lsr / measure-counter.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.13.1"
4
5 \header {
6   lsrtags = "repeats, staff-notation, editorial-annotations"
7
8 %% Translation of GIT committish: 55ea64f469d9c1703222654c9e5bc8490b04a67a
9   texidoces = "
10 Este fragmento de código proporciona una solución alternativa a la
11 producción de contadores de compás utilizando repeticiones
12 transparentes de tipo porcentaje.
13
14 "
15   doctitlees = "Contador de compases"
16
17   texidoc = "
18 This snippet provides a workaround for emitting measure counters using
19 transparent percent repeats. 
20
21 "
22   doctitle = "Measure counter"
23 } % begin verbatim
24
25 <<
26   \context Voice = "foo" {
27     \clef bass
28     c4 r g r
29     c4 r g r
30     c4 r g r
31     c4 r g r
32   }
33   \context Voice = "foo" {
34     \set countPercentRepeats = ##t
35     \override PercentRepeat #'transparent = ##t
36     \override PercentRepeatCounter #'staff-padding = #1
37     \repeat percent 4 { s1 }
38   }
39 >>
40