]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / faking-a-hammer-in-tablatures.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.4
5 \version "2.13.4"
6
7 \header {
8   lsrtags = "fretted-strings"
9   texidoc = "
10 A hammer in tablature can be faked with slurs.
11 "
12   doctitle = "Faking a hammer in tablatures"
13 } % begin verbatim
14
15
16 \score {
17   \new TabStaff {
18     \relative c'' {
19       \tabFullNotation
20       c4( d) d( d)
21       d2( c)
22     }
23   }
24 }