Re: Changing title and stanza font

2007-05-24 Thread Mats Bengtsson



Christoph Bartoschek wrote:

I have just learned that I have to change the StanzaNumber object:

\addlyrics {\override Score . LyricText #'font-name = #MetaPro-Normal 
  \override Score . StanzaNumber #'font-name = #MetaPro-Normal

  \set stanza = 1. 

But what object is responsible for the title?
  

None!

The kind of solution you had tried works well, but you have to be 
careful about the
syntax. For example, it looks as if you used some slanted quote instead 
of a straight quote.

Something like
\header{
 title = \markup { \override #'(font-name . MetaPro-Bold)  Title } }
}
should work better.

If you want to change all fonts of the document, read about 
make-pango-font-tree

in the section on Font Selection in the manual.

  /Mats


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


Re: Changing title and stanza font

2007-05-24 Thread Christoph Bartoschek
Am Donnerstag, 24. Mai 2007 schrieben Sie:

 If you want to change all fonts of the document, read about
 make-pango-font-tree
 in the section on Font Selection in the manual.

Thanks,

using make-pango-font-tree works. However the noteheads are quite big with the
example used in the manual:

myStaffSize = #20
   
#(define fonts
  (make-pango-font-tree MetaPro-Normal
Nimbus Sans
Luxi Mono
(/ myStaffSize 20)))

What are the correct values to get the same result as with:

#(set-global-staff-size 14)


Christoph


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


Re: Changing title and stanza font

2007-05-24 Thread Mats Bengtsson



Christoph Bartoschek wrote:

Am Donnerstag, 24. Mai 2007 schrieben Sie:
  

If you want to change all fonts of the document, read about
make-pango-font-tree
in the section on Font Selection in the manual.



Thanks,

using make-pango-font-tree works. However the noteheads are quite big with the
example used in the manual:

myStaffSize = #20
   
#(define fonts

  (make-pango-font-tree MetaPro-Normal
Nimbus Sans
Luxi Mono
(/ myStaffSize 20)))

What are the correct values to get the same result as with:

#(set-global-staff-size 14)
  

Just replace

myStaffSize = #20

by

myStaffSize = #14

Obvious, isn't it? ;-)

  /Mats


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


Changing title and stanza font

2007-05-23 Thread Christoph Bartoschek
Hi,

how can I change the title font?

I tried to use

\markup { \override #’(font-name . MetaPro-Bold) {Title} } 

but this does not work.

Additionally I would like to change the numbering of the stanzas to my 
preferred font. I am able to change the lyrics font but the numbers are still 
in the old font.

This is how I add my lyrics:

\addlyrics {\override Score . LyricText #'font-name = #MetaPro-Normal 
\set stanza = 1.  
text text text text
...
   }

Altogether I would like to change all fonts used to the MetaPro family of 
fonts. What is the easiest way to achieve this?

Christoph


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


Re: Changing title and stanza font

2007-05-23 Thread Christoph Bartoschek
I have just learned that I have to change the StanzaNumber object:

\addlyrics {\override Score . LyricText #'font-name = #MetaPro-Normal 
  \override Score . StanzaNumber #'font-name = #MetaPro-Normal
  \set stanza = 1. 

But what object is responsible for the title?

Christoph


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