X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fnew%2Fhammer-on-and-pull-off-using-chords.ly;fp=Documentation%2Fsnippets%2Fnew%2Fhammer-on-and-pull-off-using-chords.ly;h=980707d334439181cd5e308957e821ff37261a9a;hb=652ed35a2013489d0a14fede6307cd2595abb2c4;hp=0000000000000000000000000000000000000000;hpb=0ac07f31e0f95fc18e5916ce756b9c746af7cc58;p=lilypond.git diff --git a/Documentation/snippets/new/hammer-on-and-pull-off-using-chords.ly b/Documentation/snippets/new/hammer-on-and-pull-off-using-chords.ly new file mode 100644 index 0000000000..980707d334 --- /dev/null +++ b/Documentation/snippets/new/hammer-on-and-pull-off-using-chords.ly @@ -0,0 +1,21 @@ +\version "2.16.0" + +\header { + lsrtags = "editorial-annotations, fretted-strings" + + texidoc = " +When using hammer-on or pull-off with chorded notes, only a single arc +is drawn. However @q{double arcs} are possible by setting the +@code{doubleSlurs} property to @code{#t}. + +" + doctitle = "Hammer on and pull off using chords" +} + +\new TabStaff { + \relative c' { + % chord hammer-on and pull-off + \set doubleSlurs = ##t + 8( ) + } +}