]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-arpeggios.ly
87e9b748315537dc17ddd95909bda1211f93f23e
[lilypond.git] / Documentation / snippets / positioning-arpeggios.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.2"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Si necesitamos alargar o acortar un símbolo de arpegio, podemos
15 modificar independientemente los extremos superior e inferior.
16
17 "
18   doctitlees = "Posicionar símbolos de arpegio"
19
20
21
22 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
23   texidocfr = "
24 L'ajustement de la taille d'une indication d'arpeggio s'effectue au
25 travers du positionnement de ses extrémités haute ou basse.
26
27 "
28   doctitlefr = "Positionnement des arpeggios"
29
30   texidoc = "
31 If you need to extend or shorten an arpeggio, you can modify the upper
32 and lower start positions independently.
33
34 "
35   doctitle = "Positioning arpeggios"
36 } % begin verbatim
37
38
39 \relative c' {
40   <c e g b>1\arpeggio
41   \once \override Arpeggio #'positions = #'(-5 . 0)
42   <c e g b>1\arpeggio
43   \once \override Arpeggio #'positions = #'(0 . 5)
44   <c e g b>1\arpeggio
45   \once \override Arpeggio #'positions = #'(-5 . 5)
46   <c e g b>1\arpeggio
47 }