]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/percent-repeat-count-visibility.ly
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond
[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 %% Note: this file works from version 2.12.0
4 \version "2.13.1"
5 \header {
6   texidoces = "
7 Se pueden mostrar los contadores de las repeticiones del tipo
8 porcentaje a intervalos regulares mediante el establecimiento de
9 la propiedad de contexto @code{repeatCountVisibility}.
10
11 "
12   doctitlees = "Visibilidad del contador de repeticiones de tipo porcentaje"
13
14 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
15   texidocde = "
16 Prozentwiederholungszähler können in regelmäßigen Intervallen angezeigt
17 werden, indem man die Eigenschaft @code{repeatCountVisibility} beeinflusst.
18 "
19   doctitlede = "Sichtbarkeit von Prozent-Wiederholungen"
20
21   lsrtags = "repeats, tweaks-and-overrides"
22   texidoc = "
23 Percent repeat counters can be shown at regular intervals by setting
24 the context property @code{repeatCountVisibility}.
25 "
26   doctitle = "Percent repeat count visibility"
27 } % begin verbatim
28
29
30 \relative c'' {
31   \set countPercentRepeats = ##t
32   \set repeatCountVisibility = #(every-nth-repeat-count-visible 5)
33   \repeat percent 10 { c1 } \break
34   \set repeatCountVisibility = #(every-nth-repeat-count-visible 2)
35   \repeat percent 6 { c1 d1 }
36 }