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

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

Reply via email to