]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-arpeggios.ly
LSR: update.
[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.16"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9   texidoc = "
10 If you need to extend or shorten an arpeggio, you can modify the upper
11 and lower start positions independently.
12
13 "
14   doctitle = "Positioning arpeggios"
15 } % begin verbatim
16
17 \relative c' {
18   <c e g b>1\arpeggio
19   \once \override Arpeggio #'positions = #'(-5 . 0)
20   <c e g b>1\arpeggio
21   \once \override Arpeggio #'positions = #'(0 . 5)
22   <c e g b>1\arpeggio
23   \once \override Arpeggio #'positions = #'(-5 . 5)
24   <c e g b>1\arpeggio
25 }