Jump to content

Graphical and text woodwind diagrams

From LilyPond wiki
(Redirected from LSR 812)

In many cases, the keys other than the central column can be displayed by key name as well as by graphical means.

\version "2.24.0"

\relative c'' {
  \textLengthOn
  c1^\markup
    \woodwind-diagram
      #'piccolo
      #'((cc . (one three))
         (lh . (gis))
         (rh . (ees)))

  c^\markup
    \override #'(graphical . #f) {
      \woodwind-diagram
        #'piccolo
        #'((cc . (one three))
           (lh . (gis))
           (rh . (ees)))
    }
}