]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/faking-a-hammer-in-tablatures.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / faking-a-hammer-in-tablatures.ly
1 \version "2.14.0"
2
3 \header {
4   lsrtags = "fretted-strings"
5   texidoc = "
6 A hammer in tablature can be faked with slurs.
7 "
8   doctitle = "Faking a hammer in tablatures"
9 }
10
11 \score {
12   \new TabStaff {
13     \relative c'' {
14       \tabFullNotation
15       c4( d) d( d)
16       d2( c)
17     }
18   }
19 }