]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/percent-repeat-count-visibility.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / percent-repeat-count-visibility.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.12.0"
4 \header {
5   texidoces = "
6 Se pueden mostrar los contadores de las repeticiones del tipo
7 porcentaje a intervalos regulares mediante el establecimiento de
8 la propiedad de contexto @code{repeatCountVisibility}.
9
10 "
11   doctitlees = "Visibilidad del contador de repeticiones de tipo porcentaje"
12
13   lsrtags = "repeats, tweaks-and-overrides"
14   texidoc = "
15 Percent repeat counters can be shown at regular intervals by setting
16 the context property @code{repeatCountVisibility}.
17 "
18   doctitle = "Percent repeat count visibility"
19 } % begin verbatim
20
21
22 \relative c'' {
23   \set countPercentRepeats = ##t
24   \set repeatCountVisibility = #(every-nth-repeat-count-visible 5)
25   \repeat percent 10 { c1 } \break
26   \set repeatCountVisibility = #(every-nth-repeat-count-visible 2)
27   \repeat percent 6 { c1 d1 }
28 }