]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/isolated-percent-repeats.ly
a6561527b85f1ef16cfab1838a83d431bfc3c61d
[lilypond.git] / Documentation / snippets / isolated-percent-repeats.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"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 También se pueden imprimir símbolos de porcentaje sueltos.
12
13 "
14   doctitlees = "Símbolos de porcentaje sueltos"
15
16
17 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
18   texidocde = "
19 Isolierte Prozentwiederholungen können auch ausgegeben werden.  Das wird
20 erreicht, indem man eine Ganztaktpause notiert und ihre Ausgabeform
21 ändert:
22
23 "
24   doctitlede = "Isolierte Prozentwiederholungen"
25
26 %% Translation of GIT committish: a5bde6d51a5c88e952d95ae36c61a5efc22ba441
27   texidocfr = "
28 Des symboles de pourcentage isolés peuvent aussi être obtenus, au
29 moyen d'un silence multi-mesures dont on modifie l'aspect :
30
31 "
32   doctitlefr = "Répétition en pourcent isolée"
33
34
35   texidoc = "
36 Isolated percents can also be printed.
37
38 "
39   doctitle = "Isolated percent repeats"
40 } % begin verbatim
41
42 makePercent =
43 #(define-music-function (parser location note) (ly:music?)
44    "Make a percent repeat the same length as NOTE."
45    (make-music 'PercentEvent
46                'length (ly:music-length note)))
47
48 \relative c'' {
49   \makePercent s1
50 }
51