Hi Thomas,

I need to reproduce as faithfully as possible some excerpts
from an old score. It's Mendelssohn's Antigone; parts of it are
melodrama. I'm having trouble getting the vertical alignment right.

Perhaps the hint/function included below will help.

Cheers,
Kieren.
___________________

\version "2.13.8"

fermtext =
  #(define-music-function
    (parser location sometext)
    (string?)
    #{
      \once \override Script #'stencil = #ly:text-interface::print
      \once \override Script #'text =
        \markup \override #'(baseline-skip . 2.5) {
          \center-column {
            \text $sometext
            \musicglyph #"scripts.ufermata"
          }
        }
    #})

mymusic = \relative {
  c4 d \fermtext #"attaca senza pausa" e\fermata f g1\fermata
}

\score { \mymusic }


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to