Hi,

On Thu, Dec 25, 2014 at 10:01 AM, Ted Lemon <[email protected]> wrote:

> On Dec 25, 2014, at 10:50 AM, Kieren MacMillan <
> [email protected]> wrote:
> >   \override Arpeggio.stencil = ##f \barsSixToEight \revert
> Arpeggio.stencil
>
> This will prevent it showing up in the output, but it'll still show up in
> the midi, won't it?
>
>
This should do the trick then:

 \version "2.19.15"

rem =
#(define-music-function (parser location mus)
   (ly:music?)
   (music-filter
    (lambda (x) (not (music-is-of-type? x 'arpeggio-event)))
      mus))


music = {
  <c e g c>1\arpeggio
  <c e g c>1\arpeggio
}

\score {
  \new Staff {
    \rem \music
  }
}

HTH,
David
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to