]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/chord-glissando-in-tablature.ly
resolve merge
[lilypond.git] / Documentation / snippets / chord-glissando-in-tablature.ly
diff --git a/Documentation/snippets/chord-glissando-in-tablature.ly b/Documentation/snippets/chord-glissando-in-tablature.ly
new file mode 100644 (file)
index 0000000..e8d1d2b
--- /dev/null
@@ -0,0 +1,60 @@
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.14.0
+\version "2.14.0"
+
+\header {
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+
+  texidoces = "
+Los deslizamientos para acordes se pueden indicar tanto en el contexto
+Staff como en TabStaff.  Los números de cuerda son necesarios para
+TabStaff porque los cálculos de cuerda automáticos son diferentes para
+los acordes y para notas sueltas, y @code{\\chordGlissando} traza
+líneas entre las notas individuales.
+
+"
+
+  doctitlees = "Glissando de acordes en tablatura"
+%% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
+  texidocde = "
+Gleiten von Akkorden kann sowohl im normalen Notensystem als auch in einer
+Tabulatur notiert werden.  Saitennummern werden für Tabulaturen
+benötigt, weil die automatische Saitenberechnung unterschiedlich für
+Akkorde und einzelne Noten funktioniert und
+@code{\\chordGlissando} zieht Linien zwischen einzelnen Noten.
+"
+  doctitlede = "Akkordglissando in Tabulaturen"
+
+
+  lsrtags = "fretted-strings"
+  texidoc = "
+Slides for chords can be indicated in both Staff and TabStaff.
+String numbers are necessary for TabStaff because automatic
+string calculations are different for chords and for single notes,
+and @code{\\chordGlissando} draws lines between single notes.
+"
+  doctitle = "Chord glissando in tablature"
+} % begin verbatim
+
+
+myMusic = \relative c' {
+  \chordGlissando
+  <c\3 e\2 g\1>8 <f\3 a\2 c\1>
+}
+
+\score {
+  <<
+    \new Staff {
+      \clef "treble_8"
+      \myMusic
+    }
+    \new TabStaff {
+      \myMusic
+    }
+  >>
+}