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