X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fnew%2Fstem-and-beam-behavior-in-tablature.ly;fp=Documentation%2Fsnippets%2Fnew%2Fstem-and-beam-behavior-in-tablature.ly;h=33bf9a002954bc2de3d59364c205a0ea8f5398ab;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git 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 index 0000000000..33bf9a0029 --- /dev/null +++ b/Documentation/snippets/new/stem-and-beam-behavior-in-tablature.ly @@ -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 + } +}