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