lilypond-user
[Top][All Lists]
Advanced

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

Re: Problem getting syllables onto tied note across bar end


From: tisimst
Subject: Re: Problem getting syllables onto tied note across bar end
Date: Tue, 24 Mar 2015 15:36:30 -0700 (MST)

Henry,

It's not the tie, but the slur that is causing your problem. Slurs enforce a lyric melisma. You have two options:

1. You can either remove the slur (which I think is the right thing to do):

melody = \relative c'' {
  \clef treble
  \key a \major
  \time 4/4
  b8. b16  b16 cis8 a16~ a8. e16 fis8 a16 a~ |
  a8 fis r4 r2 |
  r2 r4 r8 a16 a |
}

2. If you must have it, you can turn the slur into a phrasing slur which doesn't enforce a melisma like a slur does:

melody = \relative c'' {
  \clef treble
  \key a \major
  \time 4/4
  b8. b16 b16 cis8 a16~ a8. e16 fis8 a16 \( a~ |
  a8 fis \) r4 r2 |
  r2 r4 r8 a16 a |
}

Take your pick!

- Abraham

On Tue, Mar 24, 2015 at 4:08 PM, Henry Law [via Lilypond] <[hidden email]> wrote:
I am having a problem getting my lyrics to fit across a group of notes
which contain a tie.  Here's the smallest possible example:

\version "2.16.2"
melody = \relative c'' {
   \clef treble
   \key a \major
   \time 4/4
   b8. b16          b16 cis8 a16~  a8. e16        fis8 a16 ( a~ |
   a8 fis )         r4             r2                           |
   r2                              r4             r8 a16 a      |
}
text = \lyricmode {
   da    da  da  a da a -- one  two three
}
\score {
   <<
     \new Voice = "mel" {  \melody }
     \new Lyrics \lyricsto mel \text
   >>
   \layout {
     \context { \Staff \RemoveEmptyStaves }
   }
}

The way I coded it, the syllable "three" is intended to fall on the last
A (16th) of the first bar and run over the a8 fis of the next bar.  But
as can be seen in http://www.lawshouse.org/music/problem01.pdf the slur
doesn't start on the last 16th but on the previous one, and the syllable
"two" is assigned to the three A's and the F#, leaving the syllable
"three" to match up with the 16th A's after the rests.

What am I doing wrong?

--

Henry Law            Manchester, England

_______________________________________________
lilypond-user mailing list
[hidden email]
https://lists.gnu.org/mailman/listinfo/lilypond-user



If you reply to this email, your message will be added to the discussion below:
http://lilypond.1069038.n5.nabble.com/Problem-getting-syllables-onto-tied-note-across-bar-end-tp173590.html
To start a new topic under User, email [hidden email]
To unsubscribe from Lilypond, click here.
NAML



View this message in context: Re: Problem getting syllables onto tied note across bar end
Sent from the User mailing list archive at Nabble.com.

reply via email to

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