Jump to content

Stem and beam behavior in tablature: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
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.
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.


<lilypond version="2.24.0">
<lilypond version="2.24">
\new TabStaff {
\new TabStaff {
   \relative c {
   \relative c {

Revision as of 18:52, 16 November 2025

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.

\version "2.24"

\new TabStaff {
  \relative c {
    \tabFullNotation
    g16 b d g b d g b
    \stemDown
    \override Beam.concaveness = 10000
    g,,16 b d g b d g b
  }
}