]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hammer-on-and-pull-off-using-chords.ly
makelsr.py
[lilypond.git] / Documentation / snippets / hammer-on-and-pull-off-using-chords.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.16.0
8 \version "2.16.0"
9
10 \header {
11   lsrtags = "editorial-annotations, fretted-strings"
12
13   texidoc = "
14 When using hammer-on or pull-off with chorded notes, only a single arc
15 is drawn. However @q{double arcs} are possible by setting the
16 @code{doubleSlurs} property to @code{#t}.
17
18 "
19   doctitle = "Hammer on and pull off using chords"
20 } % begin verbatim
21
22
23 \new TabStaff {
24   \relative c' {
25     % chord hammer-on and pull-off
26     \set doubleSlurs = ##t
27     <g' b>8( <a c> <g b>)
28   }
29 }