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