]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/slides-in-tablature.ly
resolve merge
[lilypond.git] / Documentation / snippets / slides-in-tablature.ly
diff --git a/Documentation/snippets/slides-in-tablature.ly b/Documentation/snippets/slides-in-tablature.ly
new file mode 100644 (file)
index 0000000..c85065d
--- /dev/null
@@ -0,0 +1,62 @@
+% 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 se pueden componer tipográficamente tanto en los
+contextos de @code{Staff} como en los de @code{TabStaff}:
+
+"
+
+  doctitlees = "Deslizamientos en tablatura"
+
+%% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
+  texidocde = "
+Gleiten kann sowohl in normalem Notensystem als auch in Tabulaturen notiert werden:
+"
+  doctitlede = "Gleiten (Glissando) in Tabulatur"
+
+  lsrtags = "fretted-strings"
+  texidoc = "
+Slides can be typeset in both @code{Staff} and @code{TabStaff} contexts:
+"
+  doctitle = "Slides in tablature"
+} % begin verbatim
+
+
+slides = {
+  c'8\3(\glissando d'8\3)
+  c'8\3\glissando d'8\3
+  \hideNotes
+  \grace { g16\3\glissando }
+  \unHideNotes
+  c'4\3
+  \afterGrace d'4\3\glissando {
+  \stemDown \hideNotes
+  g16\3 }
+  \unHideNotes
+}
+
+\score {
+  <<
+    \new Staff { \clef "treble_8" \slides }
+    \new TabStaff { \slides }
+  >>
+  \layout {
+    \context {
+      \Score
+      \override Glissando #'minimum-length = #4
+      \override Glissando #'springs-and-rods =
+                          #ly:spanner::set-spacing-rods
+      \override Glissando #'thickness = #2
+    }
+  }
+}