]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/percent-repeat-count-visibility.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "repeats, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20   texidocde = "
21 Prozentwiederholungszähler können in regelmäßigen Intervallen angezeigt
22 werden, indem man die Eigenschaft @code{repeatCountVisibility} beeinflusst.
23 "
24   doctitlede = "Sichtbarkeit von Prozent-Wiederholungen"
25
26 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
27   texidocfr = "
28 Le numéro de mesure répétée sera imprimé à intervalle régulier si vous
29 déterminez la propriété de contexte @code{repeatCountVisibility}.
30
31 "
32   doctitlefr = "Affichage du numéro de répétition en pourcent"
33
34
35   texidoc = "
36 Percent repeat counters can be shown at regular intervals by setting
37 the context property @code{repeatCountVisibility}.
38
39 "
40   doctitle = "Percent repeat count visibility"
41 } % begin verbatim
42
43 \relative c'' {
44   \set countPercentRepeats = ##t
45   \set repeatCountVisibility = #(every-nth-repeat-count-visible 5)
46   \repeat percent 10 { c1 } \break
47   \set repeatCountVisibility = #(every-nth-repeat-count-visible 2)
48   \repeat percent 6 { c1 d1 }
49 }