]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
Merge branch 'translation' into staging
[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 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
11   texidocfr = "
12 En mode tablature, un @emph{hammer}, ou lié ascendant, peut se simuler à
13 l'aide d'une liaison.
14
15 "
16   doctitlefr = "Simulation d'un hammer en tablature"
17
18   lsrtags = "specific-notation, workaround, fretted-strings"
19
20
21 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
22
23   texidoces = "
24 Se puede simular un @qq{hammer} o ligado ascendente con ligaduras de
25 expresión.
26
27 "
28
29   doctitlees = "Simular un hammer o ligado ascendente en una tablatura"
30
31   texidoc = "
32 A hammer in tablature can be faked with slurs.
33
34 "
35   doctitle = "Faking a hammer in tablatures"
36 } % begin verbatim
37
38
39 \score {
40   \new TabStaff {
41     \relative c'' {
42       \tabFullNotation
43       c4( d) d( d)
44       d2( c)
45     }
46   }
47 }