lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Tip/Trick: elision between lyric syllables


From: Kieren MacMillan
Subject: Tip/Trick: elision between lyric syllables
Date: Sat, 19 Aug 2006 14:48:47 -0400

Hello, all --

I've seen a couple of inquiries about this issue on the list in the past... Just ran into this problem myself, and solved it to my satisfaction (see Lilycode, below, and attached PNG).

Hope this helps someone else!

Best regards,
Kieren.

PNG image

%%%  CODE BEGINS
\version "2.9.14"
\include "english.ly"

\paper
{
        line-width = 100\mm
}

theNotes = \relative
{
        \time 3/4
        d2 d4 e4( fs2)
}

theWords = \lyricmode
{
viel -- \markup { \combine "le, au" \translate #'(2.4 . -0.5) \fontsize #-5 "‿" } soir __
}

\score
{
        \new StaffGroup
        <<
                \new Voice = "voice" \theNotes
                \new Lyrics \lyricsto "voice" \theWords
        >>
}
%%%  CODE ENDS

reply via email to

[Prev in Thread] Current Thread [Next in Thread]