On Sat, Jan 18, 2020 at 11:33:15AM -0700, Klaus Blum wrote:

> <<
>   \new ChordNames \chordmode { c1 a:m f g }
>   \new ChordNames \chordmode { \italianChords c1 a:m f g }
>   \new Staff { \clef bass c1 a f g }
> >>
> 
> Does that help?

Yes, but I would ideally use an \override so to keep the existing
definition of my leadSheet. Here's what I have:

  \book {
    \bookOutputSuffix "G"
    \header { subtitle = "(G)" }
    \score {
      \transpose c b
      \leadSheet
    }
  }

  \book {
    \bookOutputSuffix "F"
    \header { subtitle = "(F)" }
    \score {
      \transpose c a
      \leadSheet
    }
  }

And what I'd like to add is something like this:

  \book {
    \bookOutputSuffix "F-ita"
    \header { subtitle = "(F)" }
    \italianChords % <-- but doesn't work here
    \score {
      \transpose c a
      \leadSheet
    }
  }

--strk;

Reply via email to