\version "2.12.3" % Adds a Text_spanner_engraver to the Lyrics context to mimic an underline. % Will produce poor alignment (overshoot) if syllables are shorter than extent of note heads % or notes have left or right objects attached to them (e.g., arpeggios or fingerings) \score { \relative c' { \tempo 4 = 152 \time 2/4 e8( f) g4 | g8( aes) g( f) | \acciaccatura f8 e2 | f4 g | aes g8 f | e4 f | g g8( f) | \acciaccatura f8 e2 | e4 e | e2 \bar "|." } \addlyrics { И- \startTextSpan ван си Ра- ди гу- во- ри, ма- ри, И- ван си Ра- ди гу- во- ри \stopTextSpan } % \layout { indent = #0 line-width = 190\mm ragged-right=##f \context { \Lyrics \consists "Text_spanner_engraver" \override TextSpanner #'direction = #DOWN \override TextSpanner #'style = #'line \override TextSpanner #'outside-staff-priority = ##f \override TextSpanner #'padding = #0.1 % sets the distance of the line from the lyrics \override TextSpanner #'bound-details = #`((left . ((Y . 0) (padding . 0) (attach-dir . ,LEFT))) (left-broken . ((end-on-note . #t))) (right . ((Y . 0) (padding . 0) (attach-dir . ,RIGHT)))) } } % \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 152 4) } } % \header { opus = "TD-93,1,1" tagline = ##f } }