]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stem-and-beam-behavior-in-tablature.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / stem-and-beam-behavior-in-tablature.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12   texidoc = "
13 The direction of stems is controlled the same way in tablature as in
14 traditional notation. Beams can be made horizontal, as shown in this
15 example.
16
17 "
18   doctitle = "Stem and beam behavior in tablature"
19 } % begin verbatim
20
21
22 \new TabStaff {
23   \relative c {
24     \tabFullNotation
25     g16 b d g b d g b
26     \stemDown
27     \override Beam #'concaveness = #10000
28     g,,16 b d g b d g b
29   }
30 }