lilypond-user
[Top][All Lists]
Advanced

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

Re: How to use \parallelMusic with \lyricmode ?


From: Klaus Blum
Subject: Re: How to use \parallelMusic with \lyricmode ?
Date: Mon, 2 Mar 2015 13:53:53 -0700 (MST)

Matej Kosik wrote
> doesn't that mean that:
> 
>       "Cee" syllable has length 2
>       "Eee" syllable has length 4
>       "Gee" syllable has length 4
> ?

Hmmm... not really.
At the moment when \parallelMusic sorts the whole expression into three
variables, the syllables have no length. Thus, your variable "\text"
contains a sequence of syllables without length information. 
The "\lyricsto" command takes those syllables and puts them under the notes
in "\melody" - one by one. So the notes have the length information, the
syllables don't need them.

You can simply ignore the warnings, because this method works well. However,
the bar check does not work on syllables without length - you can not
guarantee that syllables will be used in the bar where you defined them. For
example,

% ----------------------------------------------
\parallelMusic #'(harmonies melody text)
{
  c1 |
  c2 e4 g |
  \lyricmode { Cee Eee Gee too many} |
  
  c1 |
  c2 e4 g |
  \lyricmode { Cee Eee Gee } |
}
% ----------------------------------------------

will produce six notes, therefore the first six syllables will be used.

I guess it will be easier to define the whole lyrics in one "\lyricmode"
statement.


Hope this helps, 
Klaus





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/How-to-use-parallelMusic-with-lyricmode-tp172507p172515.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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