]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Docs: run convert-ly for 2.14.0.
[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.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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   lsrtags = "fretted-strings"
33   texidoc = "
34 Slides for chords can be indicated in both Staff and TabStaff.
35 String numbers are necessary for TabStaff because automatic
36 string calculations are different for chords and for single notes.
37 "
38   doctitle = "Chord glissando in tablature"
39 } % begin verbatim
40
41
42 myMusic = \relative c' {
43   <c\3 e\2 g\1>1 \glissando <f\3 a\2 c\1>
44 }
45
46 \score {
47   <<
48     \new Staff {
49       \clef "treble_8"
50       \myMusic
51     }
52     \new TabStaff {
53       \myMusic
54     }
55   >>
56 }