Jump to content

Chord changes for fretboards

From LilyPond wiki
Revision as of 17:00, 14 December 2025 by Lemzwerg (talk | contribs) (Lemzwerg moved page Chord changes for FretBoards to Chord changes for fretboards without leaving a redirect)

FretBoards can be set to display only when the chord changes or at the beginning of a new line.

\version "2.24"

\include "predefined-guitar-fretboards.ly"

\paper { tagline = ##f }

myChords = \chordmode {
  c1 c1 \break
  \set chordChanges = ##t
  c1 c1 \break
  c1 c1
}

<<
  \new ChordNames { \myChords }
  \new FretBoards { \myChords }
  \new Staff { \myChords }
>>