lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: remove system_start_delimiter


From: Matthias Hüsken
Subject: Re: remove system_start_delimiter
Date: Thu, 24 Feb 2011 15:48:04 +0100
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.1.16) Gecko/20101125 SUSE/3.0.11 Thunderbird/3.0.11

> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]