Jump to content

Adding bar lines to ChordNames context: 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:
To add bar line indications in the <code>ChordNames</code> context, add the <code>Bar_engraver</code>.
To add bar line indications in the <code>ChordNames</code> context, add the <code>Bar_engraver</code>.


<lilypond version="2.24.0">
<lilypond version="2.24">
\new ChordNames \with {
\new ChordNames \with {
   \override BarLine.bar-extent = #'(-2 . 2)
   \override BarLine.bar-extent = #'(-2 . 2)

Revision as of 18:46, 16 November 2025

To add bar line indications in the ChordNames context, add the Bar_engraver.

\version "2.24"

\new ChordNames \with {
  \override BarLine.bar-extent = #'(-2 . 2)
  \consists "Bar_engraver"
}

\chordmode {
  f1:maj7 f:7 bes:7 
}