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