[prev in list] [next in list] [prev in thread] [next in thread] 

List:       lilypond-user
Subject:    Re: Trouble with alternative melody and lyrics
From:       Peter Heisen <writepeterheisen () gmail ! com>
Date:       2015-04-28 20:14:31
Message-ID: CAGWUT2JF92mEYVqhEEmd5HexQWGVrsZrj4w9p12dNRf3JqzwNQ () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Trevor & Abraham,

Thank you for your excellent suggestions.  By comparing my code to yours,
also realize the fundamental error of my ways.  I had

<<
\new Voice { Music with note }
{ Music with rest }
> > 

but I should have had

<<
{ Music with note }
\new Voice { Music with rest }
> > 

Apparently, this allows the lyrics to "see" the note and align
appropriately.  It's simple looking at it now, but I didn't see it before.
Your additional recommendations simplify the code and make it look much
better.  Thank you.

Sincerely,

Peter

On Mon, Apr 27, 2015 at 10:52 AM, tisimst <tisimst.lilypond@gmail.com>
wrote:

> Peter,
> 
> I like Trevor's suggestions. I'd also recommend the following:
> 
> 1. In the first verse lyrics, change " " to "" (i.e., remove the space).
> This makes One line up better with the notehead. You can also do "\skip
> 4" instead. For some reason, in 2.18.2, using " " creates a manual melisma,
> which is not what you want in the first verse, I think.
> 
> 2. Add "\once \tiny" to the note that is only used in the second verse
> (for clarity):
> 
> <<
> { \once \tiny \once \voiceTwo f }
> ...
> > > 
> 
> - Abraham
> 
> On Mon, Apr 27, 2015 at 9:07 AM, Trevor Daniels [via Lilypond] <[hidden
> email] <http:///user/SendEmail.jtp?type=node&node=175500&i=0>> wrote:
> 
> > 
> > Peter wrote Monday, April 27, 2015 8:25 AM
> > 
> > > I have a song with two verses.  The lyrics to the second stanza
> > occasionally have an extra syllable, such that there is a rest on that beat
> > in the first verse but a note in the second verse.  I'm trying to address
> > this using the code found in notation manual (v. 2.18.2) in Section 2.1.3
> > "Stanzas", subsection "Switching to an alternative melody".  See
> > http://www.lilypond.org/doc/v2.18/Documentation/notation/stanzas#stanzas-with-different-rhythms.
> >  But I cannot get the lyrics to recognize and line up with the added beat in
> > the second stanza.  An example, as minimal as I was able to get it, follows
> > below.  Can anyone help?  Also, is there a simpler approach that works for
> > this, so I don't have to define a new alternative voice every time this
> > situation occurs?
> > 
> > I'd use a simpler approach, like this (it's usually easiest to keep as
> > many notes as possible in the music associated with the lyrics, using skip
> > or " " to skip them as necessary):
> > 
> > \version "2.18.2"
> > 
> > melody_verse = \relative c' {
> > c4
> > <<
> > { \once \voiceTwo f }
> > \new Voice { d'4\rest }
> > > > 
> > g,4 a |
> > }
> > 
> > \score {
> > <<
> > \new Staff {
> > \new Voice = "main" {
> > \repeat volta 2 { \melody_verse  }
> > }
> > }
> > 
> > \new Lyrics \lyricsto "main" {
> > One " " three four.
> > }
> > \new Lyrics \lyricsto "main" {
> > Uno dos tres quatro.
> > }
> > > > 
> > }
> > 
> > Trevor
> > _______________________________________________
> > lilypond-user mailing list
> > [hidden email] <http:///user/SendEmail.jtp?type=node&node=175485&i=0>
> > 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/Trouble-with-alternative-melody-and-lyrics-tp175453p175485.html
> >  To start a new topic under User, email [hidden email]
> > <http:///user/SendEmail.jtp?type=node&node=175500&i=1>
> > To unsubscribe from Lilypond, click here.
> > NAML
> > <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer \
> > &id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace- \
> > nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&br \
> > eadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
> >  
> 
> 
> ------------------------------
> View this message in context: Re: Trouble with alternative melody and
> lyrics
> <http://lilypond.1069038.n5.nabble.com/Trouble-with-alternative-melody-and-lyrics-tp175453p175500.html>
>  Sent from the User mailing list archive
> <http://lilypond.1069038.n5.nabble.com/User-f3.html> at Nabble.com.
> 
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 


[Attachment #5 (text/html)]

<div dir="ltr">Trevor &amp; Abraham,<div><br></div><div>Thank you for your excellent \
suggestions.   By comparing my code to yours, also realize the fundamental error of \
my ways.   I had</div><div><br></div><div>&lt;&lt;</div><div>\new Voice { Music with \
note }</div><div>{ Music with rest }</div><div>&gt;&gt;</div><div><br></div><div>but \
I should have had</div><div><br></div><div>&lt;&lt;</div><div>{ Music with note \
}</div><div>\new Voice { Music with rest \
}</div><div>&gt;&gt;</div><div><br></div><div>Apparently, this allows the lyrics to \
&quot;see&quot; the note and align appropriately.   It&#39;s simple looking at it \
now, but I didn&#39;t see it before.   Your additional recommendations simplify the \
code and make it look much better.   Thank \
you.</div><div><br></div><div>Sincerely,</div><div><br></div><div>Peter</div></div><div \
class="gmail_extra"><br><div class="gmail_quote">On Mon, Apr 27, 2015 at 10:52 AM, \
tisimst <span dir="ltr">&lt;<a href="mailto:tisimst.lilypond@gmail.com" \
target="_blank">tisimst.lilypond@gmail.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div dir="ltr">Peter,<div><br></div><div>I like Trevor&#39;s \
suggestions. I&#39;d also recommend the following:<div><br></div><div>1. In the first \
verse lyrics, change <font face="monospace, monospace" color="#cc0000">&quot; \
&quot;</font> to <font face="monospace, monospace" \
color="#cc0000">&quot;&quot;</font> (i.e., remove the space). This makes <font \
face="monospace, monospace" color="#cc0000">One</font> line up better with the \
notehead. You can also do &quot;\skip 4&quot; instead. For some reason, in 2.18.2, \
using &quot; &quot; creates a manual melisma, which is not what you want in the first \
verse, I think.</div><div><br></div><div>2. Add &quot;<font face="monospace, \
monospace" color="#cc0000">\once \tiny</font>&quot; to the note that is only used in \
the second verse (for clarity):</div><div><br></div><div><font face="monospace, \
monospace" color="#cc0000">&lt;&lt;</font></div><div><font face="monospace, \
monospace" color="#cc0000">   { \once \tiny \once \voiceTwo f \
}</font></div><div><font face="monospace, monospace" color="#cc0000">   \
...</font></div><div><font face="monospace, monospace" \
color="#cc0000">&gt;&gt;</font></div><div><br></div><div>- \
Abraham</div></div></div><div class="gmail_extra"><br><div \
class="gmail_quote"><div><div class="h5">On Mon, Apr 27, 2015 at 9:07 AM, Trevor \
Daniels [via Lilypond] <span dir="ltr">&lt;<a \
href="http:///user/SendEmail.jtp?type=node&amp;node=175500&amp;i=0" rel="nofollow" \
link="external" target="_blank">[hidden email]</a>&gt;</span> \
wrote:<br></div></div><blockquote style="border-left:2px solid #cccccc;padding:0 1em" \
class="gmail_quote"><div><div class="h5"><span>

	<br>Peter wrote Monday, April 27, 2015 8:25 AM
<br><br></span><span>&gt;   I have a song with two verses.   The lyrics to the second \
stanza occasionally have an extra syllable, such that there is a rest on that beat in \
the first verse but a note in the second verse.   I&#39;m trying to address this \
using the code found in notation manual (v. 2.18.2) in Section 2.1.3 \
&quot;Stanzas&quot;, subsection &quot;Switching to an alternative melody&quot;.   See \
<a href="http://www.lilypond.org/doc/v2.18/Documentation/notation/stanzas#stanzas-with-different-rhythms" \
rel="nofollow" link="external" \
target="_blank">http://www.lilypond.org/doc/v2.18/Documentation/notation/stanzas#stanzas-with-different-rhythms</a>. \
But I cannot get the lyrics to recognize and line up with the added beat in the \
second stanza.   An example, as minimal as I was able to get it, follows below.   Can \
anyone help?   Also, is there a simpler approach that works for this, so I don&#39;t \
have to define a new alternative voice every time this situation occurs? \
<br><br></span><span>I&#39;d use a simpler approach, like this (it&#39;s usually \
easiest to keep as many notes as possible in the music associated with the lyrics, \
using skip or &quot; &quot; to skip them as necessary): <br><br></span><span>\version \
&quot;2.18.2&quot; <br><br>melody_verse = \relative c&#39; {
<br>   c4
<br>   &lt;&lt;
<br></span><span>      { \once \voiceTwo f }
<br>      \new Voice { d&#39;4\rest }
<br>   &gt;&gt;
<br></span><span>   g,4 a |
<br>}
<br><br>\score {
<br>   &lt;&lt;
<br>      \new Staff {
<br>         \new Voice = &quot;main&quot; {
<br>            \repeat volta 2 { \melody_verse   }
<br>         }
<br>      }
<br><br>      \new Lyrics \lyricsto &quot;main&quot; { 
<br>         One &quot; &quot; three four.
<br>      }
<br></span></div></div><span><div><div class="h5">      \new Lyrics \lyricsto \
&quot;main&quot; { <br>         Uno dos tres quatro.
<br>      }
<br>   &gt;&gt;
<br>}
<br><br>Trevor
<br></div></div>_______________________________________________
<br>lilypond-user mailing list
<br></span><span><a href="http:///user/SendEmail.jtp?type=node&amp;node=175485&amp;i=0" \
rel="nofollow" link="external" target="_blank">[hidden email]</a> <br><a \
href="https://lists.gnu.org/mailman/listinfo/lilypond-user" rel="nofollow" \
link="external" target="_blank">https://lists.gnu.org/mailman/listinfo/lilypond-user</a><br>


	
	
	
	<br>
	<br>
	<hr noshade size="1" color="#cccccc">
	</span><div style="color:#444;font:12px \
tahoma,geneva,helvetica,arial,sans-serif"><span>  <div style="font-weight:bold">If \
you reply to this email, your message will be added to the discussion below:</div>  \
</span><a href="http://lilypond.1069038.n5.nabble.com/Trouble-with-alternative-melody-and-lyrics-tp175453p175485.html" \
rel="nofollow" link="external" \
target="_blank">http://lilypond.1069038.n5.nabble.com/Trouble-with-alternative-melody-and-lyrics-tp175453p175485.html</a>
  </div><div><div>
	<div style="color:#666;font:11px \
tahoma,geneva,helvetica,arial,sans-serif;margin-top:.4em;line-height:1.5em">  To \
start a new topic under User, email <a \
href="http:///user/SendEmail.jtp?type=node&amp;node=175500&amp;i=1" rel="nofollow" \
link="external" target="_blank">[hidden email]</a> <br>  To unsubscribe from \
Lilypond, <a rel="nofollow" link="external">click here</a>.<br>  <a \
href="http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewe \
r&amp;id=instant_html%21nabble%3Aemail.naml&amp;base=nabble.naml.namespaces.BasicNames \
pace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&a \
mp;breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml" \
rel="nofollow" style="font:9px serif" link="external" target="_blank">NAML</a>  \
</div></div></div></blockquote></div><br></div>


	
	
	
<br><hr align="left" width="300">
View this message in context: <a \
href="http://lilypond.1069038.n5.nabble.com/Trouble-with-alternative-melody-and-lyrics-tp175453p175500.html" \
target="_blank">Re: Trouble with alternative melody and lyrics</a><br> Sent from the \
<a href="http://lilypond.1069038.n5.nabble.com/User-f3.html" target="_blank">User \
mailing list archive</a> at \
Nabble.com.<br><br>_______________________________________________<br> lilypond-user \
mailing list<br> <a href="mailto:lilypond-user@gnu.org">lilypond-user@gnu.org</a><br>
<a href="https://lists.gnu.org/mailman/listinfo/lilypond-user" \
target="_blank">https://lists.gnu.org/mailman/listinfo/lilypond-user</a><br> \
<br></blockquote></div><br></div>



_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic