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