blob: e066f6ba4b48fdb530d6f7200e565386f4be939d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
% DO NOT EDIT this file manually; it is automatically
% generated from Documentation/snippets/new
% Make any changes in Documentation/snippets/new/
% and then run scripts/auxiliar/makelsr.py
%
% This file is in the public domain.
%% Note: this file works from version 2.16.0
\version "2.18.0"
\header {
= "editorial-annotations, fretted-strings"
= "
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}.
"
= "Hammer on and pull off using chords"
} % begin verbatim
\new TabStaff {
\relative c' {
% chord hammer-on and pull-off
\set doubleSlurs = ##t
<g' b>8( <a c> <g b>)
}
}
|