lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: arpeggio in drummode


From: Aaron Hill
Subject: Re: arpeggio in drummode
Date: Tue, 13 Aug 2019 22:36:23 -0700
User-agent: Roundcube Webmail/1.3.8

On 2019-08-13 9:22 pm, edes wrote:
Hello, list.

It seems it's not possible to use \arpeggio in drummode, or am I missing
something?

The following code doesn't throw any errors but it doesn't show anything.

\version "2.21.0"

\new DrumStaff

\drummode {
  <bd sn>2
  <bd sn>\arpeggio
}

If you check the Internals Reference, you will see that the Arpeggio grob comes from the Arpeggio_engraver. This engraver is part of a number of Voice contexts, but it is *not* part of DrumVoice (or DrumStaff, for that matter).

Try:

%%%%
\version "2.19.83"

\new DrumStaff
\with { \consists "Arpeggio_engraver" }
\drummode {
  <bd sn>2
  <bd sn>\arpeggio
}
%%%%

-- Aaron Hill



reply via email to

[Prev in Thread] Current Thread [Next in Thread]