]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Updates LSR locally
[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: 8b93de6ce951b7b14bc7818f31019524295b990f
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: 40bf2b38d674c43f38058494692d1a0993fad0bd
34
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
43   doctitlefr = "Glissando d'accords et tablature"
44
45
46   lsrtags = "fretted-strings"
47   texidoc = "
48 Slides for chords can be indicated in both Staff and TabStaff.
49 String numbers are necessary for TabStaff because automatic
50 string calculations are different for chords and for single notes.
51 "
52   doctitle = "Chord glissando in tablature"
53 } % begin verbatim
54
55
56 myMusic = \relative c' {
57   <c\3 e\2 g\1>1 \glissando <f\3 a\2 c\1>
58 }
59
60 \score {
61   <<
62     \new Staff {
63       \clef "treble_8"
64       \myMusic
65     }
66     \new TabStaff {
67       \myMusic
68     }
69   >>
70 }