lilypond-user
[Top][All Lists]
Advanced

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

Re: Formatting lyrics for different stanzas


From: Jim Long
Subject: Re: Formatting lyrics for different stanzas
Date: Fri, 15 Nov 2013 22:10:00 -0800
User-agent: Mutt/1.5.21 (2010-09-15)

On Sat, Nov 16, 2013 at 01:12:18PM +0800, ayutheos wrote:
> How do I apply different text formatting for different stanzas of
> lyrics globally?

Does this do what you want?

Jim

\paper  {
    myStaffSize = #20
}

melody = \relative c' { c d e }

lyricI = \lyricmode { a lyric }

lyricII = \lyricmode { a lyric }

\score {
    <<
        \new Voice = "one" { \melody }
        \new Lyrics \lyricsto "one" {
            \override LyricText #'font-size = #-3
            \override LyricText #'font-name = #"Lucida Sans Unicode"
            \lyricI }
        \new Lyrics \lyricsto "one" {
            \override LyricText #'font-size = #-3
            \override LyricText #'font-name = #"LilyJAZZText"
            \lyricII }
   >>
}



reply via email to

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