Re: 2 questions re this file

2015-03-01 Thread Trevor Daniels

Peter Teeson wrote Saturday, February 28, 2015 6:59 PM

 I removed the bar checks in the lyrics and all is OK.
 (I put them in because Learning suggested it…)

Yes, sorry about that.  If that section in the
Learning Manual is to be retained I think it needs to
have an explanation and a warning added, saying that
the check for the occurrence of a barline is made at
the start of the syllable _following_ the barcheck.  
So if a bar starts with a rest the first syllable in 
that bar does not immediately follow the barline, 
and a barcheck should not be placed before it, as 
there is no barline there.

I'll see if I can draft an amendment ...

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


Re: 2 questions re this file

2015-02-28 Thread Peter Teeson
On 2015-02-28, at 1:47 PM, Cynthia Karl pck...@mac.com wrote:
 On Feb 28, 2015, at 11:50 AM,Peter Teeson peter.tee...@icloud.com wrote:
 
 1. How can I break the composer text so it appears like this on the score:
  Music: Thomas 'Fats' Waller 
Harry Brooks
 
 composer = \markup { \concat { Music:   
   \column { Thomas 'Fats' Waller \vspace #-.4  
  Harry Brooks } } }
Perfect…. Thanks.

 2. How can I make the last word of VerseTwo appear in the 2nd repeat (not in 
 the 1st as happens now)
 You have two choices (I think the 2nd one looks better):
   * make the last line of VerseOne read:  you __ you __
Brilliant!  I agree.

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


2 questions re this file

2015-02-28 Thread Peter Teeson
Hi:

1. How can I break the composer text so it appears like this on the score:
Music: Thomas 'Fats' Waller 
  Harry Brooks

 2. How can I make the last word of VerseTwo appear in the 2nd repeat (not in 
the 1st as happens now)
 Here is the pdf  

Ain't Misbehavin v3.pdf
Description: Adobe PDF document

(NOTE: The console log is clean except for the ubiquitous barcheck issue 99!!)

TIA

Peter
-- here is the .ly file 

\version 2.19.15
\header {
  title = Ain't Misbehavin'
  poet = Words: Andy Razal 
  composer = Music: Thomas 'Fats' Waller  Harry Brooks
  meter = Slowly
  tagline = \markup {
\column {
  LilyPond file by Peter Teeson, Toronto 2015/02/25
}
  }
}

\include english.ly  % English accidental names f = flat, s = sharp
#(set-global-staff-size 30)

melody = \relative c' {
\key ef \major
\time 2/2 
\clef treble
\repeat volta 2 { 
r8 ef f ef d' d4. | r8 f, g f c'2 |
r8 bf c bf ef ef4 d8 | f ef c  g~ g gf4 f8 |
r8 ef f ef d' d4. | r8 f, g f c' c4 bf8 |
}
\alternative {
{ g1~ | g1 |}
{ g1~ | g2. r4}
 }
}

VerseOne = \lyricmode {
\override Lyrics.LyricHyphen.minimum-distance = 1
\set stanza = #1. 
No one to talk with, | all by my -- self,
no one to walk with, but | I'm hap -- py on __ the shelf, |
Ain't Mis -- be -- hav -- in' | I'm sav -- in' my love for |
you __ |
}

VerseTwo = \lyricmode {
\override Lyrics.LyricHyphen.minimum-distance = 1
\set stanza = #2. 
I know for cer -- tain | the one I love, 
I'm thru with flir -- tin' | it's just you I'm think -- in' of.
Ain't Mis -- be -- hav -- in' | I'm sav -- in' my love for |
you __ |
}

\score {
  
\new Voice = one { \melody }
\new Lyrics \lyricsto one { \VerseOne }
\new Lyrics \lyricsto one { \VerseTwo }

\layout { }
\midi { }
}___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: 2 questions re this file

2015-02-28 Thread Thomas Morley
2015-02-28 18:50 GMT+01:00 Peter Teeson peter.tee...@icloud.com:
 Hi:

 1. How can I break the composer text so it appears like this on the score:
 Music: Thomas 'Fats' Waller
   Harry Brooks

  2. How can I make the last word of VerseTwo appear in the 2nd repeat (not in 
 the 1st as happens now)

I'd do:

VerseTwo = \lyricmode {
\override Lyrics.LyricHyphen.minimum-distance = 1
\set stanza = #2. 
I know for cer -- tain  the one I love,
I'm thru with flir -- tin'  it's just you I'm think -- in' of.
Ain't Mis -- be -- hav -- in'  I'm sav -- in' my love for
%% use skip
%\skip1*2
%% or use underscore
_ you __
}

  Here is the pdf 

 (NOTE: The console log is clean except for the ubiquitous barcheck issue 99!!)

I'm with Han-Wen
http://code.google.com/p/lilypond/issues/detail?id=99#c1
don't seeing a bug here.

Don't use bar-checks in combination with \lyricsto, they sometimes
will return warnings and they _should_ do so, imho.

Cheers,
  Harm

 TIA

 Peter
 -- here is the .ly file 

 \version 2.19.15
 \header {
   title = Ain't Misbehavin'
   poet = Words: Andy Razal 
   composer = Music: Thomas 'Fats' Waller  Harry Brooks
   meter = Slowly
   tagline = \markup {
 \column {
   LilyPond file by Peter Teeson, Toronto 2015/02/25
 }
   }
 }

 \include english.ly  % English accidental names f = flat, s = sharp
 #(set-global-staff-size 30)

 melody = \relative c' {
 \key ef \major
 \time 2/2
 \clef treble
 \repeat volta 2 {
 r8 ef f ef d' d4. | r8 f, g f c'2 |
 r8 bf c bf ef ef4 d8 | f ef c  g~ g gf4 f8 |
 r8 ef f ef d' d4. | r8 f, g f c' c4 bf8 |
 }
 \alternative {
 { g1~ | g1 |}
 { g1~ | g2. r4}
  }
 }

 VerseOne = \lyricmode {
 \override Lyrics.LyricHyphen.minimum-distance = 1
 \set stanza = #1. 
 No one to talk with, | all by my -- self,
 no one to walk with, but | I'm hap -- py on __ the shelf, |
 Ain't Mis -- be -- hav -- in' | I'm sav -- in' my love for |
 you __ |
 }

 VerseTwo = \lyricmode {
 \override Lyrics.LyricHyphen.minimum-distance = 1
 \set stanza = #2. 
 I know for cer -- tain | the one I love,
 I'm thru with flir -- tin' | it's just you I'm think -- in' of.
 Ain't Mis -- be -- hav -- in' | I'm sav -- in' my love for |
 you __ |
 }

 \score {
 
 \new Voice = one { \melody }
 \new Lyrics \lyricsto one { \VerseOne }
 \new Lyrics \lyricsto one { \VerseTwo }
 
 \layout { }
 \midi { }
 }
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 https://lists.gnu.org/mailman/listinfo/lilypond-user


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


Re: 2 questions re this file

2015-02-28 Thread Cynthia Karl

 On Feb 28, 2015, at 11:50 AM,Peter Teeson peter.tee...@icloud.com wrote:
 
 
 Hi:
 
 1. How can I break the composer text so it appears like this on the score:
   Music: Thomas 'Fats' Waller 
 Harry Brooks

 composer = \markup { \concat { Music:   
\column { Thomas 'Fats' Waller \vspace #-.4  
 Harry Brooks } } }

 
 2. How can I make the last word of VerseTwo appear in the 2nd repeat (not in 
 the 1st as happens now)

You have two choices (I think the 2nd one looks better):

*  make the last line of VerseTwo read:  \skip 1 you __

* make the last line of VerseOne read:  you __ you __

HTH
Pat Karl
 Here is the pdf  
 -- next part --
 A non-text attachment was scrubbed...
 Name: Ain't Misbehavin v3.pdf
 Type: application/pdf
 Size: 66428 bytes
 Desc: not available
 URL: 
 http://lists.gnu.org/archive/html/lilypond-user/attachments/20150228/92554492/attachment.pdf
 -- next part --
 
 (NOTE: The console log is clean except for the ubiquitous barcheck issue 99!!)
 
 TIA
 
 Peter
 -- here is the .ly file 
 
 \version 2.19.15
 \header {
  title = Ain't Misbehavin'
  poet = Words: Andy Razal 
  composer = Music: Thomas 'Fats' Waller  Harry Brooks
  meter = Slowly
  tagline = \markup {
\column {
  LilyPond file by Peter Teeson, Toronto 2015/02/25
}
  }
 }
 
 \include english.ly  % English accidental names f = flat, s = sharp
 #(set-global-staff-size 30)
 
 melody = \relative c' {
   \key ef \major
   \time 2/2 
   \clef treble
   \repeat volta 2 { 
   r8 ef f ef d' d4. | r8 f, g f c'2 |
   r8 bf c bf ef ef4 d8 | f ef c  g~ g gf4 f8 |
   r8 ef f ef d' d4. | r8 f, g f c' c4 bf8 |
   }
   \alternative {
   { g1~ | g1 |}
   { g1~ | g2. r4}
}
 }
 
 VerseOne = \lyricmode {
   \override Lyrics.LyricHyphen.minimum-distance = 1
   \set stanza = #1. 
   No one to talk with, | all by my -- self,
   no one to walk with, but | I'm hap -- py on __ the shelf, |
   Ain't Mis -- be -- hav -- in' | I'm sav -- in' my love for |
   you __ |
 }
 
 VerseTwo = \lyricmode {
   \override Lyrics.LyricHyphen.minimum-distance = 1
   \set stanza = #2. 
   I know for cer -- tain | the one I love, 
   I'm thru with flir -- tin' | it's just you I'm think -- in' of.
   Ain't Mis -- be -- hav -- in' | I'm sav -- in' my love for |
   you __ |
 }
 
 \score {
 
   \new Voice = one { \melody }
   \new Lyrics \lyricsto one { \VerseOne }
   \new Lyrics \lyricsto one { \VerseTwo }
   
   \layout { }
   \midi { }
 }
 
 --


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


Re: 2 questions re this file

2015-02-28 Thread Peter Teeson
On 2015-02-28, at 1:18 PM, Thomas Morley thomasmorle...@gmail.com wrote:
 2015-02-28 18:50 GMT+01:00 Peter Teeson peter.tee...@icloud.com:
 2. How can I make the last word of VerseTwo appear in the 2nd repeat (not in 
 the 1st as happens now)
%\skip1*2
\skip1 worked the way I desired.

 Don't use bar-checks in combination with \lyricsto, they sometimes
 will return warnings.
I removed the bar checks in the lyrics and all is OK.
(I put them in because Learning suggested it…)

thanks…

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


Re: 2 questions re this file

2015-02-28 Thread tisimst
Peter,

On Sat, Feb 28, 2015 at 10:51 AM, Peter Teeson-3 [via Lilypond] 
ml-node+s1069038n17240...@n5.nabble.com wrote:
 Hi: 
 
 1. How can I break the composer text so it appears like this on the 
 score: 
 Music: Thomas 'Fats' Waller 
   Harry Brooks 

Tailor this to your tastes:

composer = \markup { \center-column { Music: Thomas 'Fats' Waller  
Harry Brooks } }

  2. How can I make the last word of VerseTwo appear in the 2nd repeat 
 (not in the 1st as happens now) 

You can put the lyrics in the same \repeat { ... } \alternative { 
{...} {...} } structure as the music. Try that out.

- Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/2-questions-re-this-file-tp172400p172401.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user