|
From: | Jeff Kopmanis |
Subject: | Re: lilyjazz fonts not working |
Date: | Mon, 19 Aug 2024 23:14:38 -0400 |
This was my script (below). I cloned the Lilyjazz repo locally so that I can easily get changes. I also keep Lilypond itself in it's own directory in my home.#!/bin/bash
REV = “2.24.4"
LILY = "$HOME/Apps/lilypond-$REV/share/lilypond/$REV/"
LILYJAZZ = "$HOME/Projects/lilyjazz"
cd $LILYJAZZ
echo -n "Updating from repo..."
git pull
echo "Copying files to Lilypond v$REV..."
cp ${LILYJAZZ}/otf/* ${LILY}/fonts/otf
cp ${LILYJAZZ}/svg/* ${LILY}/fonts/svg
cp ${LILYJAZZ}/stylesheet/* ${LILY}/stylesheet
cp ${LILYJAZZ}/supplementary-files/lilyjazz-*/*.otf ${LILY}/fonts/otfOn Mon, Aug 19, 2024 at 8:33 AM Robert Garrigos <robert@garrigos.cat> wrote:Oh that's a good one. I will definitely use it. Thanks.Robert Garrigós i Castro+34 620 918 701On 19 d’ag. de 2024, at 11:27, Mark Probert <probertm@gmail.com> wrote:And to add on, updating the fonts needs to be done for each new release of LP. I downloaded the fonts and then use a script that has the version number and base location, such as...
—script
REV = “2.24.4"LILY = "/opt/homebrew/share/lilypond"
cp lilyjazz/otf/* ${LILY}/${REV}/fonts/otfcp lilyjazz/svg/* ${LILY}/${REV}/fonts/svgcp lilyjazz/stylesheet/* ${LILY}/${REV}/lycp lilyjazz/supplementary-files/**/*.otf ${LILY}/${REV}/fonts/otf
—end
On 19 Aug 2024, at 12:56, Jeff Kopmanis <kopmanis@gmail.com> wrote:
For me the installation was two-fold:1) install the OTF and SVG fonts in the .../fonts directory2) AND...install the lilyjazz-chords and lilyjazz-text fonts from the .../supplimental-files/lilyjazz-chords and .../supplimental-files/lilyjazz-text directories.
Once I got those supplemental-files fonts in there, things worked well with simply including the lilyjazz.ily stylesheet. The Github repo has some great examples that I used to test against.
On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos <robert@garrigos.cat> wrote:
Thanks Hans, but I already tried this with no luck. However, adding:
property-defaults.fonts.serif = "lilyjazz-text"
fixed it.
Robert.
El 18 ag. 2024, a les 10:38, Hans Aikema <hans.aikema@aikebah.net> va escriure:
On 18 Aug 2024, at 10:19, Robert Garrigos <robert@garrigos.cat> wrote:
Hi all,
I’m trying to use lilyjazz fonts with latest build (2.25.18) and it seems almost everything is working, except the text fonts: lyrics, titles and other texts are not using the lilyjazz-text font, although it is installed like all the others (lily-xx.otf, lily-brace.otf and lily-chord.otf).<jazz_pdf_—_Lilypond.jpeg>
this is my \paper code:
\paper {property-defaults.fonts.music = "lilyjazz"property-defaults.fonts.brace = "lilyjazz"property-defaults.fonts.roman = "lilyjazz"property-defaults.fonts.sans = "lilyjazz"}
What am I missing?
Robert,
looking at lilyjazz's own stylesheet [1] you would need to specify lilyjazz-text for roman and lilyjazz-chord for sans
Thanks.
========================
Robert Garrigós
--
Jeff KopmanisMedium: https://kopmanis.medium.comGLAAC: https://www.glaac.org/University Lowbrow Astronomers: https://lowbrows.clubOrange Can Astronomy: https://www.facebook.com/orangecanastronomy/
** Go Green and leave this email on the Screen! **
--Jeff KopmanisMedium: https://kopmanis.medium.comGLAAC: https://www.glaac.org/University Lowbrow Astronomers: https://lowbrows.clubOrange Can Astronomy: https://www.facebook.com/orangecanastronomy/
** Go Green and leave this email on the Screen! **
[Prev in Thread] | Current Thread | [Next in Thread] |