lilypond-user
[Top][All Lists]
Advanced

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

Re: Single lyric for multiple syllables


From: Thomas Morley
Subject: Re: Single lyric for multiple syllables
Date: Wed, 5 Oct 2016 10:27:49 +0200

2016-10-05 9:54 GMT+02:00 Carlo Stemberger <address@hidden>:
> Hello,
>
> http://lilypond.org/doc/v2.18/Documentation/notation/common-notation-for-vocal-music#multiple-syllables-to-one-note
>
> Is it possible to get a single lyric tie for multiple syllables?
>
> In the attached example, I'd rather see an unique tie from "re" to "il":
>
> \addlyrics {
>     Il Si -- gno -- re~è~il mi -- o pas -- to -- re:
>     non -- man -- co di nul -- la.
> }
>
> Thank you!
>
> Carlo
>

With a newer devel-version you could do:

\version "2.19.48"

\paper { indent = 35 }

<<
  \new Voice = "mel"
  \relative {
        \key d \major
        \time 2/4

        \partial 4
        a'8 g
        fis4 d
        e8( fis) g b
        a2
        a4 r8 a
        b4
        fis8 e
        fis4 fis\fermata
        \bar "|."
  }


  \new Lyrics
    \with { instrumentName = "\"\~\"" }
    \lyricsto "mel" {
      Il Si -- gno -- re~è~il mi -- o pas -- to -- re:
      non -- man -- co di nul -- la.
    }

  \new Lyrics
    \with { instrumentName = "\"undertie\"" }
    \lyricsto "mel" {
      Il Si -- gno -- \markup \undertie "re è il" mi -- o pas -- to -- re:
      non -- man -- co di nul -- la.
    }

  \new Lyrics
    \with { instrumentName = "tweaked \"undertie\"" }
    \lyricsto "mel" {
      Il Si -- gno --
        \markup
          %% maybe uncomment:
          %\override #'(offset . 4)
          \override #'(shorten-pair . (1.8 . 1))
          \undertie "re è il"
        mi -- o pas -- to -- re:
      non -- man -- co di nul -- la.
  }
>>

HTH,
  Harm

Attachment: atest-40.preview.png
Description: PNG image


reply via email to

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