]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/stem-and-beam-behavior-in-tablature.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / stem-and-beam-behavior-in-tablature.ly
1 \version "2.14.0"
2
3 \header {
4   lsrtags = "fretted-strings"
5   texidoc = "
6 The direction of stems is controlled the same way in tablature as in
7 traditional notation.  Beams can be made horizontal, as shown in this
8 example.
9 "
10   doctitle = "Stem and beam behavior in tablature"
11 }
12
13 \new TabStaff {
14   \relative c {
15     \tabFullNotation
16     g16 b d g b d g b
17     \stemDown
18     \override Beam #'concaveness = #10000
19     g,,16 b d g b d g b
20   }
21 }