Re: font size in \addLyrics{}

2009-05-01 Thread Kieren MacMillan

Hi Gerard,


In the following I want to change the text font size


More to the point, you want to change the LyricText #'font-size.  ;)


misplaces the text


Partly, that's because you surrounded your entire lyric line in  
quotes, so that Lilypond tried to attach it to a single note.


Hopefully the attached modified version will help.
Kieren.

_

\version "2.12.2"

\layout {
\context {
\PianoStaff
\accepts Lyrics
}
\context {
\Lyrics
\override LyricText #'font-size = #-4
}
}

\relative c' {
\new PianoStaff
<<
\new Staff {
\time 4/4
c'4 e d c
a g
}
\addlyrics { Up to might -- y Lon -- don }
\new Staff {
\clef bass
\time 4/4
s1
\partial 2 s2
}
>>
}


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


font size in \addLyrics{}

2009-05-01 Thread Gerard McConnell
Hello, I'm in difficulty again.  In the following I want to 
change the text font size;  
I tried \addLyrics { \markup { \fontsize #-1.0  "text" } }
which compiled without a warning and changes the 
font size, but misplaces the text.
Thanks,
Gerard

\relative c' { 
 \new PianoStaff \with  { \accepts Lyrics }
<< 
 \new Staff { 
  \time 4/4
  c'4 e d c
  a g 
 }

 \addlyrics { \markup { \fontsize #-4.0 "Up to might -- y Lon -- don" } }

 \new Staff {
  \clef bass
  \time 4/4 
  s1 
  \partial 2 s2 
 }
>> 
}___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user