]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-arpeggios.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / positioning-arpeggios.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Si necesitamos alargar o acortar un símbolo de arpegio, podemos
12 modificar independientemente los extremos superior e inferior.
13
14 "
15   doctitlees = "Posicionar símbolos de arpegio"
16
17
18
19   texidoc = "
20 If you need to extend or shorten an arpeggio, you can modify the upper
21 and lower start positions independently.
22
23 "
24   doctitle = "Positioning arpeggios"
25 } % begin verbatim
26
27 \relative c' {
28   <c e g b>1\arpeggio
29   \once \override Arpeggio #'positions = #'(-5 . 0)
30   <c e g b>1\arpeggio
31   \once \override Arpeggio #'positions = #'(0 . 5)
32   <c e g b>1\arpeggio
33   \once \override Arpeggio #'positions = #'(-5 . 5)
34   <c e g b>1\arpeggio
35 }