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