Re: Stanza is displaying at bottom of score

2013-08-19 Thread Jethro Van Thuyne

Perfect, thank you so much!

Jethro

Phil Holmes (19 Aug 2013 @ 15:36)
- Original Message - From: "Jethro Van Thuyne" 


To: 
Sent: Monday, August 19, 2013 2:25 PM
Subject: Stanza is displaying at bottom of score



In the following minimal example, a repeated stanza is showing up
under the PianoStaff. Of course, I would need it to be under the
first stanza, above the PianoStaff. Am I missing some setting,
how can I fix this? Any help much appreciated :)


You need to adjust it like this:

\new Lyrics = "FirstVerse" \lyricsto "melody" {
Not re -- peat -- ed.
<<
{ The first time words. }
\new Lyrics \with { alignBelowContext = #"FirstVerse" } {
\set associatedVoice = "melody"
Sec -- ond time words.
}



}



This is in the NR, a little further on from the place you presumably 
got the first bit of code.


If you'd used different rhythms in the "piano" and voice, it would 
have given the clue that it was a placement issue, not relating to 
the note rhythms.


--
Phil Holmes


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


Re: Stanza is displaying at bottom of score

2013-08-19 Thread Phil Holmes
- Original Message - 
From: "Jethro Van Thuyne" 

To: 
Sent: Monday, August 19, 2013 2:25 PM
Subject: Stanza is displaying at bottom of score



In the following minimal example, a repeated stanza is showing up
under the PianoStaff. Of course, I would need it to be under the
first stanza, above the PianoStaff. Am I missing some setting,
how can I fix this? Any help much appreciated :)


You need to adjust it like this:

\new Lyrics = "FirstVerse" \lyricsto "melody" {
Not re -- peat -- ed.
<<
{ The first time words. }
\new Lyrics \with { alignBelowContext = #"FirstVerse" } {
\set associatedVoice = "melody"
Sec -- ond time words.
}



}



This is in the NR, a little further on from the place you presumably got the 
first bit of code.


If you'd used different rhythms in the "piano" and voice, it would have 
given the clue that it was a placement issue, not relating to the note 
rhythms.


--
Phil Holmes 



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


Stanza is displaying at bottom of score

2013-08-19 Thread Jethro Van Thuyne

In the following minimal example, a repeated stanza is showing up
under the PianoStaff. Of course, I would need it to be under the
first stanza, above the PianoStaff. Am I missing some setting,
how can I fix this? Any help much appreciated :)

Kind regards,

Jethro

Screenshot: 
http://jethro.be/upload/sc_stanzas.png


Minimal example:
\version "2.17.24"
\score {
  <<
\new Staff {
  \new Voice = "melody" {
\relative c'' {
  a4 a a a
  \repeat volta 2 { b4 b b b }
}
  }
}
\new Lyrics \lyricsto "melody" {
  Not re -- peat -- ed.
  <<
{ The first time words. }
\new Lyrics {
  \set associatedVoice = "melody"
  Sec -- ond time words.
}
  >>
}
\new PianoStaff
{
  << { a b c d c d e f } { a b c c c d e f } >>
}
  >>
}

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