lilypond-user
[Top][All Lists]
Advanced

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

Re: Mandatory dashes in lyrics


From: Aaron Hill
Subject: Re: Mandatory dashes in lyrics
Date: Sun, 10 Oct 2021 19:23:50 -0700
User-agent: Roundcube Webmail/1.4.9

On 2021-10-09 7:55 am, Lukas-Fabian Moser wrote:
{
  c'8 8 8
}
\addlyrics {
  En -- tends -- tu
}

but the LyricHyphen between those two words isn't printed if the
syllables are close.

You can force a LyricHyphen to appear:

%%%%
forceHyphen = \lyricmode {
  \once \override LyricHyphen.minimum-distance = #1.5
}

music = \fixed c' {
  \key f \major \time 3/4
  a2 4 | a4( g) a | c'4( bes) a | a4 g r
}

{ \music } \addlyrics {
  And the white -- robed mar -- tyrs fol -- low,
}
{ \music } \addlyrics {
  And the \forceHyphen white -- robed mar -- tyrs fol -- low,
}
%%%%

Note that since the -- must appear directly after the text, you will need to apply this override before the text.


-- Aaron Hill



reply via email to

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