Aaron Dalton wrote:
I want to be able to hide the accidental.

There is Mark Polesky's suppress-accidental http://lists.gnu.org/archive/html/lilypond-devel/2009-07/msg00384.html but that is probably overkill in your case. You can do it by switching the style in a music function http://lilypond.org/doc/v2.12/Documentation/user/lilypond/Music-functions


Cheers,
Robin
ditto =
#(define-music-function (parser location mus) (ly:music?)
  #{
    #(set-accidental-style 'no-reset)
    $mus 
    #(set-accidental-style 'forget)
  #})

{
  #(set-accidental-style 'forget)
  cis' 
  \ditto cis' 
  cis'
  cis'
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to