> 1. How do I remove the system_start_delimiter (large opening brace) at the 
> start
>    of the score? I've tried a number of things to remove the brace but none
>    were successful.

You can remove the opening brace by setting the following for the
PianoStaff context (add to your \layout block):

        \context {
                \PianoStaff
                systemStartDelimiter = #'SystemStartBar
        } % context

> 2. How do I globally set markup text to be in "times" font? I.e., I want to do
>    something like this:
> 
>    \override TextSpanner #'font-name = #"times"
> 
>    but for markup text *THROUGHOUT* the entire score.

Add the following to your \paper block:

        myStaffSize = #20
        #(define fonts
                (make-pango-font-tree "Times" "Times" "Luxi Mono"
                (/ myStaffSize 20)))

The three font names stand for serif, sans serif, and mono font (I'm not
completely sure about the order though...), just add the desired fonts
there.

Only drawback: This changes *all* text in your score to the new font.


Cheers,

Matthias

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

Reply via email to