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