]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hammer-on-and-pull-off-using-voices.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / Documentation / snippets / hammer-on-and-pull-off-using-voices.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 The arc of hammer-on and pull-off is upwards in voices one and three and
15 downwards in voices two and four:
16
17 "
18   doctitle = "Hammer on and pull off using voices"
19 } % begin verbatim
20
21
22 \new TabStaff {
23   \relative c' {
24     << { \voiceOne g2( a) }
25     \\ { \voiceTwo a,( b) }
26     >> \oneVoice
27   }
28 }