]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-count-visibility.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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.4"
5
6 \header {
7   lsrtags = "repeats, tweaks-and-overrides"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
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: d96023d8792c8af202c7cb8508010c0d3648899d
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: e98b2d804c2a136edfa28adc894bb584f676c884
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 }