]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / faking-a-hammer-in-tablatures.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "fretted-strings, specific-notation, workaround"
11
12   texidoc = "
13 A hammer in tablature can be faked with slurs.
14
15 "
16   doctitle = "Faking a hammer in tablatures"
17 } % begin verbatim
18
19
20 \score {
21   \new TabStaff {
22     \relative c'' {
23       \tabFullNotation
24       c4( d) d( d)
25       d2( c)
26     }
27   }
28 }