Change the font size of lyric hyphens

2016-12-29 Thread Bruce Pike
Is there a way to change the size of hyphens in lyric text?

Tried
  \override Lyrics.LyricHyphen.font-size = #6
  \override Lyrics.LyricText.font-size = #6
Changes the font size of the lyric text, but not the hyphens.

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


Re: Change the font size of lyric hyphens

2016-12-29 Thread Thomas Morley
2016-12-28 23:15 GMT+01:00 Bruce Pike :
> Is there a way to change the size of hyphens in lyric text?
>
> Tried
>   \override Lyrics.LyricHyphen.font-size = #6
>   \override Lyrics.LyricText.font-size = #6
> Changes the font size of the lyric text, but not the hyphens.
>
> BruceP


See
http://lilypond.org/doc/v2.19/Documentation/internals/lyrichyphen
http://lilypond.org/doc/v2.19/Documentation/internals/lyric_002dhyphen_002dinterface
for the tweakable properties of LyricHyphen.

Probably resulting in:

\new Lyrics \lyricmode {
de -- fault
\override Lyrics.LyricHyphen.thickness = #6
foo -- bar
}

\new Lyrics \lyricmode {
de -- fault
\override Lyrics.LyricHyphen.length = #3
foo -- bar
}

\new Lyrics \lyricmode {
de -- fault
\override Lyrics.LyricHyphen.thickness = #6
\override Lyrics.LyricHyphen.length = #3
foo -- bar
}

Cheers,
  Harm

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


Re: Change the font size of lyric hyphens

2016-12-29 Thread Bruce Pike
Harm,
Thanks, that worked.

Also helped to add
  \override Lyrics.LyricHyphen.height = #1
to move the hyphens up to align horizontally with the larger text.

BruceP


On Thu, Dec 29, 2016 at 7:45 AM, Thomas Morley 
wrote:

> 2016-12-28 23:15 GMT+01:00 Bruce Pike :
> > Is there a way to change the size of hyphens in lyric text?
> >
> > Tried
> >   \override Lyrics.LyricHyphen.font-size = #6
> >   \override Lyrics.LyricText.font-size = #6
> > Changes the font size of the lyric text, but not the hyphens.
> >
> > BruceP
>
>
> See
> http://lilypond.org/doc/v2.19/Documentation/internals/lyrichyphen
> http://lilypond.org/doc/v2.19/Documentation/internals/lyric_
> 002dhyphen_002dinterface
> for the tweakable properties of LyricHyphen.
>
> Probably resulting in:
>
> \new Lyrics \lyricmode {
> de -- fault
> \override Lyrics.LyricHyphen.thickness = #6
> foo -- bar
> }
>
> \new Lyrics \lyricmode {
> de -- fault
> \override Lyrics.LyricHyphen.length = #3
> foo -- bar
> }
>
> \new Lyrics \lyricmode {
> de -- fault
> \override Lyrics.LyricHyphen.thickness = #6
> \override Lyrics.LyricHyphen.length = #3
> foo -- bar
> }
>
> Cheers,
>   Harm
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user