]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chord-glissando-in-tablature.ly
Imported Upstream version 2.14.2
[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, y @code{\\chordGlissando} traza
18 líneas entre las notas individuales.
19
20 "
21
22   doctitlees = "Glissando de acordes en tablatura"
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 und
29 @code{\\chordGlissando} zieht Linien zwischen einzelnen Noten.
30 "
31   doctitlede = "Akkordglissando in Tabulaturen"
32
33
34   lsrtags = "fretted-strings"
35   texidoc = "
36 Slides for chords can be indicated in both Staff and TabStaff.
37 String numbers are necessary for TabStaff because automatic
38 string calculations are different for chords and for single notes,
39 and @code{\\chordGlissando} draws lines between single notes.
40 "
41   doctitle = "Chord glissando in tablature"
42 } % begin verbatim
43
44
45 myMusic = \relative c' {
46   \chordGlissando
47   <c\3 e\2 g\1>8 <f\3 a\2 c\1>
48 }
49
50 \score {
51   <<
52     \new Staff {
53       \clef "treble_8"
54       \myMusic
55     }
56     \new TabStaff {
57       \myMusic
58     }
59   >>
60 }