]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
1d5707066422c97e1949f6e63ec144fff7090bd3
[lilypond.git] / Documentation / snippets / chord-glissando-in-tablature.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 = "fretted-strings"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13
14   texidoces = "
15 Los deslizamientos para acordes se pueden indicar tanto en el contexto
16 @code{Staff} como en @code{TabStaff}.  Los números de cuerda son
17 necesarios para TabStaff porque los cálculos de cuerda automáticos son
18 diferentes para los acordes y para notas sueltas.
19
20 "
21
22   doctitlees = "Glissando de acordes en tablatura"
23
24 %% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
25   texidocde = "
26 Gleiten von Akkorden kann sowohl im normalen Notensystem als auch in einer
27 Tabulatur notiert werden.  Saitennummern werden für Tabulaturen
28 benötigt, weil die automatische Saitenberechnung unterschiedlich für
29 Akkorde und einzelne Noten funktioniert.
30 "
31   doctitlede = "Akkordglissando in Tabulaturen"
32
33
34 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
35   texidocfr = "
36 Un glissando sur des accords s'indique dans un @code{TabStaff} de la
37 même manière que dans un @code{Staff}, à ceci près que nous aurons
38 besoin des numéros de corde afin de déterminer correctement les frets
39 d'arrivée.
40
41 "
42   doctitlefr = "Glissando d'accords et tablature"
43
44
45   texidoc = "
46 Slides for chords can be indicated in both @code{Staff} and
47 @code{TabStaff}. String numbers are necessary for @code{TabStaff}
48 because automatic string calculations are different for chords and for
49 single notes.
50
51 "
52   doctitle = "Chord glissando in tablature"
53 } % begin verbatim
54
55 myMusic = \relative c' {
56   <c\3 e\2 g\1>1 \glissando <f\3 a\2 c\1>
57 }
58
59 \score {
60   <<
61     \new Staff {
62       \clef "treble_8"
63       \myMusic
64     }
65     \new TabStaff {
66       \myMusic
67     }
68   >>
69 }