]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
48c97b954aae03f284975d810b34418bff680353
[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.36
5 \version "2.13.40"
6
7 \header {
8 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
9
10   texidoces = "
11 Se puede simular un @qq{hammer} o ligado ascendente con ligaduras de
12 expresión.
13
14 "
15
16   doctitlees = "Simular un hammer o ligado ascendente en una tablatura"
17
18   lsrtags = "fretted-strings"
19   texidoc = "
20 A hammer in tablature can be faked with slurs.
21 "
22   doctitle = "Faking a hammer in tablatures"
23 } % begin verbatim
24
25
26 \score {
27   \new TabStaff {
28     \relative c'' {
29       \tabFullNotation
30       c4( d) d( d)
31       d2( c)
32     }
33   }
34 }