]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/faking-a-hammer-in-tablatures.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / faking-a-hammer-in-tablatures.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12
13   texidoces = "
14 Se puede simular un @qq{hammer} o ligado ascendente con ligaduras de
15 expresión.
16
17 "
18
19   doctitlees = "Simular un hammer o ligado ascendente en una tablatura"
20
21   lsrtags = "fretted-strings"
22   texidoc = "
23 A hammer in tablature can be faked with slurs.
24 "
25   doctitle = "Faking a hammer in tablatures"
26 } % begin verbatim
27
28
29 \score {
30   \new TabStaff {
31     \relative c'' {
32       \tabFullNotation
33       c4( d) d( d)
34       d2( c)
35     }
36   }
37 }