Am Sunday, 21. August 2011, 22:03:27 schrieb Patrick Karl:
> Is it possible in LilyPond to generate an unslurred acciaccatura?  Or,
> possibly equivalently, is it possible to generate a grace note with a
> slashed stem?

In the latest developer release 2.15.x you can (using the \slashedGrace 
function):
http://kainhofer.com/~lilypond/Documentation/changes/index.html

In 2.14 you can copy the new definition into your own file (example attached).

Cheers,
Reinhold

-- 
------------------------------------------------------------------
Reinhold Kainhofer, [email protected], http://reinhold.kainhofer.com/
 * Financial & Actuarial Math., Vienna Univ. of Technology, Austria
 * http://www.fam.tuwien.ac.at/, DVR: 0005886
 * LilyPond, Music typesetting, http://www.lilypond.org
\version "2.14.0"

startSlashedGraceMusic =  {
  \override Stem  #'stroke-style = #"grace"
}

stopSlashedGraceMusic =  {
  \revert Stem #'stroke-style
}

slashedGrace =
#(def-grace-function startSlashedGraceMusic stopSlashedGraceMusic
   (_i "Create slashed graces (slashes through stems, but no slur) from
the following music expression"))



\relative c'' {
  c4 \slashedGrace e8 c4
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to