]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hammer-on-and-pull-off-using-chords.ly
Add '-dcrop' option to ps and svg backends
[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 LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "editorial-annotations, fretted-strings"
11
12   texidoc = "
13 When using hammer-on or pull-off with chorded notes, only a single arc
14 is drawn. However @qq{double arcs} are possible by setting the
15 @code{doubleSlurs} property to @code{#t}.
16
17 "
18   doctitle = "Hammer on and pull off using chords"
19 } % begin verbatim
20
21 \new TabStaff {
22   \relative c' {
23     % chord hammer-on and pull-off
24     \set doubleSlurs = ##t
25     <g' b>8( <a c> <g b>)
26   }
27 }