Re: Lyrics - vertical alignments

2011-04-09 Thread Carl Sorensen
On 4/9/11 9:48 PM, "Michael Dykes"  wrote:

> I have a score (attached) that has the lyrics placed rather high, that is not
> centered between the staves. I have looked into the manual a lot, and still
> have yet to come up with a solution. Help please. Thanks in advance.

Michael,

You need to report the version of LilyPond that you are using, because
lyrics are handled differently in different versions.

Looking at your .ly file, I see a version of 2.12.3.

Unfortunately, I can't help with lyric spacing on 2.12.3.  Lyrics are
handled differently in 2.12 and 2.13.5x.  I'm only familiar with the new
methods.

Hopefully somebody else will be able to help you.

I'm sorry,

Carl
 


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


Re: Lyrics - vertical alignments

2011-04-09 Thread Carl Sorensen
On 4/9/11 10:27 PM, "Michael Dykes"  wrote:

> Sorry. I re-wrote and re-compiled the file, with a newer version (2.13.58) and
> the lyrics are farther down, but still not centered b/t the staves. Thanks. It
> is attached.

Please keep the replies on list, so they can be of benefit to all.

> 
> On Sun, Apr 10, 2011 at 12:23 AM, Carl Sorensen  wrote:
>> On 4/9/11 9:48 PM, "Michael Dykes"  wrote:
>> 
 I have a score (attached) that has the lyrics placed rather high, that is
 >> not
 centered between the staves. I have looked into the manual a lot, and still
 have yet to come up with a solution. Help please. Thanks in advance.
>> 
>> Michael,
>> 
>> You need to report the version of LilyPond that you are using, because
>> lyrics are handled differently in different versions.
>> 
>> Looking at your .ly file, I see a version of 2.12.3.
>> 
>> Unfortunately, I can't help with lyric spacing on 2.12.3.  Lyrics are
>> handled differently in 2.12 and 2.13.5x.  I'm only familiar with the new
>> methods.
>> 

On 2.13.58, the \override VerticalAxizGroup #'minimum-Y-extent command is no
longer used to control spacing.

Please read the section in the documentation on flexible vertical spacing
variables (Notation Reference 4.4.1).

There is an example there that shows how to center lyrics between staves.

HTH,

Carl


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


Re: Lyrics - vertical alignments

2011-04-09 Thread Michael Dykes
I have read this - well most of this section before, but when I try it I
still get the same results. Perhaps someone could help me out a little,
please?

On Sun, Apr 10, 2011 at 12:36 AM, Carl Sorensen  wrote:

> On 4/9/11 10:27 PM, "Michael Dykes"  wrote:
>
> > Sorry. I re-wrote and re-compiled the file, with a newer version
> (2.13.58) and
> > the lyrics are farther down, but still not centered b/t the staves.
> Thanks. It
> > is attached.
>
> Please keep the replies on list, so they can be of benefit to all.
>
> >
> > On Sun, Apr 10, 2011 at 12:23 AM, Carl Sorensen 
> wrote:
> >> On 4/9/11 9:48 PM, "Michael Dykes"  wrote:
> >>
>  I have a score (attached) that has the lyrics placed rather high, that
> is
>  >> not
>  centered between the staves. I have looked into the manual a lot, and
> still
>  have yet to come up with a solution. Help please. Thanks in advance.
> >>
> >> Michael,
> >>
> >> You need to report the version of LilyPond that you are using, because
> >> lyrics are handled differently in different versions.
> >>
> >> Looking at your .ly file, I see a version of 2.12.3.
> >>
> >> Unfortunately, I can't help with lyric spacing on 2.12.3.  Lyrics are
> >> handled differently in 2.12 and 2.13.5x.  I'm only familiar with the new
> >> methods.
> >>
>
> On 2.13.58, the \override VerticalAxizGroup #'minimum-Y-extent command is
> no
> longer used to control spacing.
>
> Please read the section in the documentation on flexible vertical spacing
> variables (Notation Reference 4.4.1).
>
> There is an example there that shows how to center lyrics between staves.
>
> HTH,
>
> Carl
>
>


-- 
In Christ,
Michael D
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lyrics - vertical alignments

2011-04-10 Thread Xavier Scheuer
On 10 April 2011 06:40, Michael Dykes  wrote:
>
> I have read this - well most of this section before, but when I try it I
> still get the same results. Perhaps someone could help me out a little,
> please?

Normally

  \new Lyrics \with {
\override VerticalAxisGroup #'staff-affinity = #CENTER
  }

should do the trick.
But the result does not appear centered in this case.  I suspect it is
due to the fact that you have a voice with stems up in the lower staff
(Tenor) and no voice with stems down in the upper staff (Alto).

So in this case I would "simply" increase the minimum distance between
the Lyrics and the related Staff (upper staff).

  \new Lyrics \with {
\override VerticalAxisGroup #'nonstaff-relatedstaff-spacing
  #'minimum-distance = #6
  }

HTH.

Cheers,
Xavier

-- 
Xavier Scheuer 

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


Re: Lyrics - vertical alignments

2011-04-11 Thread Michael Dykes
Yes, Xavier that helps a lot. That does the trick. Thanks a lot!!!

On Sun, Apr 10, 2011 at 8:22 AM, Xavier Scheuer  wrote:

> On 10 April 2011 06:40, Michael Dykes  wrote:
> >
> > I have read this - well most of this section before, but when I try it I
> > still get the same results. Perhaps someone could help me out a little,
> > please?
>
> Normally
>
>  \new Lyrics \with {
>\override VerticalAxisGroup #'staff-affinity = #CENTER
>  }
>
> should do the trick.
> But the result does not appear centered in this case.  I suspect it is
> due to the fact that you have a voice with stems up in the lower staff
> (Tenor) and no voice with stems down in the upper staff (Alto).
>
> So in this case I would "simply" increase the minimum distance between
> the Lyrics and the related Staff (upper staff).
>
>  \new Lyrics \with {
>\override VerticalAxisGroup #'nonstaff-relatedstaff-spacing
>  #'minimum-distance = #6
>  }
>
> HTH.
>
> Cheers,
> Xavier
>
> --
> Xavier Scheuer 
>



-- 
In Christ,
Michael D
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user