On Thu, May 30, 2024 at 6:32 AM Pierre-Luc Gauthier < p.luc.gauth...@gmail.com> wrote:
> Since you wrote : cis > > maybe you want : > > \new ChordNames \chordmode { > g1:11+13 > } > > which gives picrelated : > > Then again, there is an extra 7 which is already implied… > You can create chord name exceptions to get rid of the 7 or 9 from the chord modifiers: %%% \version "2.24.3" % modify 13 and #11 13 chords % Exception music is chords with markups chExceptionMusic = { <c e g bes d' a'>1-\markup { \super "13" } <c e g bes d' fis' a' >1-\markup { \raise #1.8 \teeny \sharp \super "11 13" } } % Convert music to list and prepend to existing exceptions. chExceptions = #(append (sequential-music-to-chord-exceptions chExceptionMusic #t) ignatzekExceptions) theMusic = \chordmode { g1:13 g1:11+.13 \set chordNameExceptions = #chExceptions g1:13 g1:11+.13 } << \new ChordNames \theMusic \new Voice \theMusic >> %%% -- Knute Snortum