]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-arpeggios.ly
Doc: run makelsr locally
[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 = "tweaks-and-overrides, expressive-marks"
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   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
31 \relative c' {
32   <c e g b>1\arpeggio
33   \once \override Arpeggio #'positions = #'(-5 . 0)
34   <c e g b>1\arpeggio
35   \once \override Arpeggio #'positions = #'(0 . 5)
36   <c e g b>1\arpeggio
37   \once \override Arpeggio #'positions = #'(-5 . 5)
38   <c e g b>1\arpeggio
39 }