]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-arpeggios.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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   texidoc = "
23 If you need to extend or shorten an arpeggio, you can modify the upper
24 and lower start positions independently.
25
26 "
27   doctitle = "Positioning arpeggios"
28 } % begin verbatim
29
30 \relative c' {
31   <c e g b>1\arpeggio
32   \once \override Arpeggio #'positions = #'(-5 . 0)
33   <c e g b>1\arpeggio
34   \once \override Arpeggio #'positions = #'(0 . 5)
35   <c e g b>1\arpeggio
36   \once \override Arpeggio #'positions = #'(-5 . 5)
37   <c e g b>1\arpeggio
38 }