]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
5ce48ab4430ba71de2fdb0620cfea367c8637ac7
[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: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
23   texidocfr = "
24 En mode tablature, un @emph{hammer}, ou lié ascendant, peut se simuler à
25 l'aide d'une liaison.
26
27 "
28   doctitlefr = "Simulation d'un hammer en tablature"
29
30   texidoc = "
31 A hammer in tablature can be faked with slurs.
32
33 "
34   doctitle = "Faking a hammer in tablatures"
35 } % begin verbatim
36
37
38 \score {
39   \new TabStaff {
40     \relative c'' {
41       \tabFullNotation
42       c4( d) d( d)
43       d2( c)
44     }
45   }
46 }