lilypond-user
[Top][All Lists]
Advanced

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

Re: Partially formatting syllables in lyrics


From: Aaron Hill
Subject: Re: Partially formatting syllables in lyrics
Date: Sat, 21 Nov 2020 08:50:51 -0800
User-agent: Roundcube Webmail/1.4.9

On 2020-11-21 8:44 am, Fr. Samuel Springuel wrote:
How can I apply italics to part of a syllable in the lyrics context?
When I use the method I usually use to apply italics, it automatically
creates a new syllable:

#(ly:set-option 'relative-includes #t)
\version "2.20.0"

\new Staff
<<
    \new Voice = "mel" { c' c' }
    \new Lyrics \lyricsto "mel" { \lyricmode { hat\override
Lyrics.LyricText.font-shape = #'italic (s) \revert
Lyrics.LyricText.font-shape show } }


Use \markup for the entire syllable:

%%%%
\version "2.20.0"

{ a'4 b'2 }
\addlyrics {
  \markup { \bold a \italic b }
  \markup { \box c \circle d }
}
%%%%


-- Aaron Hill



reply via email to

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