Hi Pierre-Luc,

Am 28.01.23 um 14:02 schrieb Pierre-Luc Gauthier:
m = \drummode { hh }

Unfortunately not: This turns m into "music" including a duration. Hence, \m 8 will be interpreted as "first \m" (with its own pitch), then another one of duration 8.

Compare:

\version "2.24.0"

m = \drummode { hh }

\drummode { \m 8 \m r4 \m  }
\drummode { hh8  hh8 r4 hh4 }

But what you can do is:

\version "2.24.0"

drumPitchNames.m = #'hihat

\drummode { m8 m r4 m }

(which might be even better than the OP hoped for).

Lukas


Reply via email to