]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/hammer-on-and-pull-off-using-chords.ly
Imported Upstream version 2.18.2
[lilypond.git] / Documentation / snippets / new / hammer-on-and-pull-off-using-chords.ly
1 \version "2.16.0"
2
3 \header {
4   lsrtags = "editorial-annotations, fretted-strings"
5
6   texidoc = "
7 When using hammer-on or pull-off with chorded notes, only a single arc
8 is drawn. However @q{double arcs} are possible by setting the
9 @code{doubleSlurs} property to @code{#t}.
10
11 "
12   doctitle = "Hammer on and pull off using chords"
13 }
14
15 \new TabStaff {
16   \relative c' {
17     % chord hammer-on and pull-off
18     \set doubleSlurs = ##t
19     <g' b>8( <a c> <g b>)
20   }
21 }