]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Doc: run makelsr 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: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
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 %% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
23   texidocde = "
24 Gleiten von Akkorden kann sowohl im normalen Notensystem als auch in einer
25 Tabulatur notiert werden.  Saitennummern werden für Tabulaturen
26 benötigt, weil die automatische Saitenberechnung unterschiedlich für
27 Akkorde und einzelne Noten funktioniert.
28 "
29   doctitlede = "Akkordglissando in Tabulaturen"
30
31
32 %% Translation of GIT committish: 40bf2b38d674c43f38058494692d1a0993fad0bd
33
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
42   doctitlefr = "Glissando d'accords et tablature"
43
44
45   lsrtags = "fretted-strings"
46   texidoc = "
47 Slides for chords can be indicated in both Staff and TabStaff.
48 String numbers are necessary for TabStaff because automatic
49 string calculations are different for chords and for single notes.
50 "
51   doctitle = "Chord glissando in tablature"
52 } % begin verbatim
53
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 }