]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Doc-es: run makelsr.
[lilypond.git] / Documentation / snippets / chord-glissando-in-tablature.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.53
8 \version "2.13.53"
9
10 \header {
11 %% Translation of GIT committish: 69d7781c6ab26df02bc81ff1eb294d47fa673491
12
13   texidoces = "
14 Los deslizamientos para acordes se pueden indicar tanto en el contexto
15 Staff como en TabStaff.  Los números de cuerda son necesarios para
16 TabStaff porque los cálculos de cuerda automáticos son diferentes para
17 los acordes y para notas sueltas, y @code{\\chordGlissando} traza
18 líneas entre las notas individuales.
19
20 "
21
22   doctitlees = "Glissando de acordes en tablatura"
23   lsrtags = "fretted-strings"
24   texidoc = "
25 Slides for chords can be indicated in both Staff and TabStaff.
26 String numbers are necessary for TabStaff because automatic
27 string calculations are different for chords and for single notes,
28 and @code{\\chordGlissando} draws lines between single notes.
29 "
30   doctitle = "Chord glissando in tablature"
31 } % begin verbatim
32
33
34 myMusic = \relative c' {
35   \chordGlissando
36   <c\3 e\2 g\1>8 <f\3 a\2 c\1>
37 }
38
39 \score {
40   <<
41     \new Staff {
42       \clef "treble_8"
43       \myMusic
44     }
45     \new TabStaff {
46       \myMusic
47     }
48   >>
49 }