]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/hammer-on-and-pull-off-using-voices.ly
Imported Upstream version 2.18.2
[lilypond.git] / Documentation / snippets / new / hammer-on-and-pull-off-using-voices.ly
1 \version "2.16.0"
2
3 \header {
4   lsrtags = "editorial-annotations, fretted-strings"
5
6   texidoc = "
7 The arc of hammer-on and pull-off is upwards in voices one and three and
8 downwards in voices two and four:
9
10 "
11   doctitle = "Hammer on and pull off using voices"
12 }
13
14 \new TabStaff {
15   \relative c' {
16     << { \voiceOne g2( a) }
17     \\ { \voiceTwo a,( b) }
18     >> \oneVoice
19   }
20 }