]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.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 \score {
20   \new TabStaff {
21     \relative c'' {
22       \tabFullNotation
23       c4( d) d( d)
24       d2( c)
25     }
26   }
27 }