Hi Ethan,

> Try something like this:
> 
> \version "2.18.2"
> \language"english"
> 
> \relative{
> \time 2/4
> c2*15/16 \f \< s2*1/16 \!
> }

Another solution is to include and employ David K’s very useful \after function:

\version "2.18.2"
\language"english"

after =
#(define-music-function (parser location t e m)
     (ly:duration? ly:music? ly:music?)
     #{
         \context Bottom <<
             #m
             { \skip $t <> -\tweak extra-spacing-width #empty-interval $e }
         >>
     #})

\relative{
  \time 2/4
  \after 32*15 \! { c2\f \< }
}

Hope that helps!
Kieren.
________________________________

Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to