lilypond-user
[Top][All Lists]
Advanced

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

Re: OpenLilyLib with Windows


From: Malte Meyn
Subject: Re: OpenLilyLib with Windows
Date: Sun, 1 Apr 2018 09:45:20 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0



Am 31.03.2018 um 19:14 schrieb foxfanfare:
- Could someone please make a quick tutorial on how include the bravura
font?

Have a look at section 3.4.4 of the Notation Reference: http://lilypond.org/doc/v2.19/Documentation/notation/replacing-the-notation-font.html (this is the english version, not sure whether other languages have been updated yet). Does that help you?

The LilyPond-compatible version of Bravura is called Profondo, you can download it from https://github.com/OpenLilyPondFonts

- Is it necessary to work with openLilyLib or is it possible to do something
easier? I only succed to include other alternative free fonts made before by
tisimst.

No, it’s not necessary to use openLilyLib, just install the font files and then put something like

\paper {
  #(define fonts
    (set-global-fonts
     #:music "profondo"
     #:brace "profondo"))
}

in your file. If you want to use set-global-staffsize, you have to do this before the \paper block and add another line:

#(set-global-staff-size 17)
\paper {
  #(define fonts
     (set-global-fonts
      #:music "profondo"
      #:brace "profondo"
      #:factor (/ staff-height pt 20)))
}

- Is also SMuFL well implemented in Lilypond?

Not yet, but hopefully this will be done soon (not before 2.20 tough probably). It’s one of the Google Summer of Code suggestions: http://lilypond.org/google-summer-of-code.html



reply via email to

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