]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-count-visibility.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / percent-repeat-count-visibility.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.20"
5
6 \header {
7   lsrtags = "repeats, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
10   texidoces = "
11 Se pueden mostrar los contadores de las repeticiones del tipo
12 porcentaje a intervalos regulares mediante el establecimiento de
13 la propiedad de contexto @code{repeatCountVisibility}.
14
15 "
16   doctitlees = "Visibilidad del contador de repeticiones de tipo porcentaje"
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Prozentwiederholungszähler können in regelmäßigen Intervallen angezeigt
21 werden, indem man die Eigenschaft @code{repeatCountVisibility} beeinflusst.
22 "
23   doctitlede = "Sichtbarkeit von Prozent-Wiederholungen"
24 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
25   texidocfr = "
26 Le numéro de mesure répétée sera imprimé à intervalle régulier si vous
27 déterminez la propriété de contexte @code{repeatCountVisibility}.
28
29 "
30   doctitlefr = "Affichage du numéro de répétition en pourcent"
31
32
33   texidoc = "
34 Percent repeat counters can be shown at regular intervals by setting
35 the context property @code{repeatCountVisibility}.
36
37 "
38   doctitle = "Percent repeat count visibility"
39 } % begin verbatim
40
41 \relative c'' {
42   \set countPercentRepeats = ##t
43   \set repeatCountVisibility = #(every-nth-repeat-count-visible 5)
44   \repeat percent 10 { c1 } \break
45   \set repeatCountVisibility = #(every-nth-repeat-count-visible 2)
46   \repeat percent 6 { c1 d1 }
47 }