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