Jump to content

Changing the ambitus gap: 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:
It is possible to change the default gap between the ambitus noteheads and the line joining them.
It is possible to change the default gap between the ambitus noteheads and the line joining them.


<lilypond version="2.24.0" full>
<lilypond version="2.24" full>
\layout {
\layout {
   \context {
   \context {

Revision as of 18:47, 16 November 2025

It is possible to change the default gap between the ambitus noteheads and the line joining them.

\version "2.24"

\layout {
  \context {
    \Voice
    \consists "Ambitus_engraver"
  }
}

\new Staff {
  \time 2/4
  % Default setting
  c'4 g''
}

\new Staff {
  \time 2/4
  \override AmbitusLine.gap = 0
  c'4 g''
}

\new Staff {
  \time 2/4
  \override AmbitusLine.gap = 1
  c'4 g''
}

\new Staff {
  \time 2/4
  \override AmbitusLine.gap = 1.5
  c'4 g''
}

\paper { tagline = ##f }