]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/stem-and-beam-behavior-in-tablature.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / new / stem-and-beam-behavior-in-tablature.ly
diff --git a/Documentation/snippets/new/stem-and-beam-behavior-in-tablature.ly b/Documentation/snippets/new/stem-and-beam-behavior-in-tablature.ly
new file mode 100644 (file)
index 0000000..33bf9a0
--- /dev/null
@@ -0,0 +1,21 @@
+\version "2.14.0"
+
+\header {
+  lsrtags = "fretted-strings"
+  texidoc = "
+The direction of stems is controlled the same way in tablature as in
+traditional notation.  Beams can be made horizontal, as shown in this
+example.
+"
+  doctitle = "Stem and beam behavior in tablature"
+}
+
+\new TabStaff {
+  \relative c {
+    \tabFullNotation
+    g16 b d g b d g b
+    \stemDown
+    \override Beam #'damping = #+inf.0
+    g,,16 b d g b d g b
+  }
+}