Re: lilyjazz fonts not working

2024-08-19 Thread Jeff Kopmanis
Small corrections for /bin/bash and prettying the output

#!/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 -n 'Copying fonts...'
cp ${LILYJAZZ}/otf/* ${LILY}/fonts/otf
cp ${LILYJAZZ}/svg/* ${LILY}/fonts/svg
cp ${LILYJAZZ}/supplementary-files/lilyjazz-*/*.otf ${LILY}/fonts/otf
echo 'Done'
echo -n 'Copying stylesheets...'
cp ${LILYJAZZ}/stylesheet/* ${LILY}/stylesheet
echo 'Done'

On Mon, Aug 19, 2024 at 10:27 PM Jeff Kopmanis  wrote:

> 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/otf
>
> On Mon, Aug 19, 2024 at 8:33 AM Robert Garrigos 
> wrote:
>
>> Oh that's a good one. I will definitely use it. Thanks.
>>
>> Robert Garrigós i Castro
>> +34 620 918 701
>> <https://garrigos.cat>https://garrigos.cat
>>
>> Get BlueMail for Android <https://bluemail.me>
>> On 19 d’ag. de 2024, at 11:27, Mark Probert  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/otf
>>>   cp lilyjazz/svg/* ${LILY}/${REV}/fonts/svg
>>>   cp lilyjazz/stylesheet/* ${LILY}/${REV}/ly
>>>   cp lilyjazz/supplementary-files/**/*.otf ${LILY}/${REV}/fonts/otf
>>>
>>> —end
>>>
>>> On 19 Aug 2024, at 12:56, Jeff Kopmanis  wrote:
>>>
>>> For me the installation was two-fold:
>>> 1) install the OTF and SVG fonts in the .../fonts directory
>>> 2) 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.
>>>
>>> https://github.com/OpenLilyPondFonts/lilyjazz
>>>
>>>
>>>
>>> On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos 
>>> 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  va
>>>> escriure:
>>>>
>>>>
>>>>
>>>> On 18 Aug 2024, at 10:19, Robert Garrigos  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).
>>>> 
>>>>
>>>> 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
>>>>
>>>> [1]
>>>> https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
>>>>
>>>>
>>>> Thanks.
>>>>
>>>> 
>>>> Robert Garrigós
>>>>
>>>>
>>>>
>>>
>>> --
>>> *Jeff Kopmanis*
>>> Medium: https://kopmanis.medium.com
>>> GLAAC: https://www.glaac.org/
>>> University Lowbrow Astronomers: https://lowbrows.club
>>> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>>>
>>> ** Go Green and leave this email on the Screen! **
>>>
>>>
>>>
>
> --
> *Jeff Kopmanis*
> Medium: https://kopmanis.medium.com
> GLAAC: https://www.glaac.org/
> University Lowbrow Astronomers: https://lowbrows.club
> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>
> ** Go Green and leave this email on the Screen! **
>


-- 
*Jeff Kopmanis*
Medium: https://kopmanis.medium.com
GLAAC: https://www.glaac.org/
University Lowbrow Astronomers: https://lowbrows.club
Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/

** Go Green and leave this email on the Screen! **


Re: lilyjazz fonts not working

2024-08-19 Thread Jeff Kopmanis
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/otf

On Mon, Aug 19, 2024 at 8:33 AM Robert Garrigos  wrote:

> Oh that's a good one. I will definitely use it. Thanks.
>
> Robert Garrigós i Castro
> +34 620 918 701
> <https://garrigos.cat>https://garrigos.cat
>
> Get BlueMail for Android <https://bluemail.me>
> On 19 d’ag. de 2024, at 11:27, Mark Probert  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/otf
>>   cp lilyjazz/svg/* ${LILY}/${REV}/fonts/svg
>>   cp lilyjazz/stylesheet/* ${LILY}/${REV}/ly
>>   cp lilyjazz/supplementary-files/**/*.otf ${LILY}/${REV}/fonts/otf
>>
>> —end
>>
>> On 19 Aug 2024, at 12:56, Jeff Kopmanis  wrote:
>>
>> For me the installation was two-fold:
>> 1) install the OTF and SVG fonts in the .../fonts directory
>> 2) 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.
>>
>> https://github.com/OpenLilyPondFonts/lilyjazz
>>
>>
>>
>> On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos 
>> 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  va
>>> escriure:
>>>
>>>
>>>
>>> On 18 Aug 2024, at 10:19, Robert Garrigos  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).
>>> 
>>>
>>> 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
>>>
>>> [1]
>>> https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
>>>
>>>
>>> Thanks.
>>>
>>> 
>>> Robert Garrigós
>>>
>>>
>>>
>>
>> --
>> *Jeff Kopmanis*
>> Medium: https://kopmanis.medium.com
>> GLAAC: https://www.glaac.org/
>> University Lowbrow Astronomers: https://lowbrows.club
>> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>>
>> ** Go Green and leave this email on the Screen! **
>>
>>
>>

-- 
*Jeff Kopmanis*
Medium: https://kopmanis.medium.com
GLAAC: https://www.glaac.org/
University Lowbrow Astronomers: https://lowbrows.club
Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/

** Go Green and leave this email on the Screen! **


Re: lilyjazz fonts not working

2024-08-19 Thread Raphael Mankin




On 19/08/2024 10:27, Mark Probert 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/otf
   cp lilyjazz/svg/* ${LILY}/${REV}/fonts/svg
   cp lilyjazz/stylesheet/* ${LILY}/${REV}/ly
   cp lilyjazz/supplementary-files/**/*.otf ${LILY}/${REV}/fonts/otf

—end


Why no use 'ln' instead of 'cp' and save yourself a little bit of disk 
space - and backup time, I hope you do make regular backups.







On 19 Aug 2024, at 12:56, Jeff Kopmanis  wrote:

For me the installation was two-fold:
1) install the OTF and SVG fonts in the .../fonts directory
2) 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.


https://github.com/OpenLilyPondFonts/lilyjazz 
<https://github.com/OpenLilyPondFonts/lilyjazz>




On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos <mailto:rob...@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 mailto:hans.aik...@aikebah.net>> va escriure:




On 18 Aug 2024, at 10:19, Robert Garrigos mailto:rob...@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).


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

[1]
https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily 
<https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily>



Thanks.


Robert Garrigós




--
*Jeff Kopmanis*
Medium: https://kopmanis.medium.com <https://kopmanis.medium.com/>
GLAAC: https://www.glaac.org/ <https://www.glaac.org/>
University Lowbrow Astronomers: https://lowbrows.club 
<https://lowbrows.club/>
Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/ 
<https://www.facebook.com/orangecanastronomy/>


** Go Green and leave this email on the Screen! **




--
https://saturday-october-seven.com/



Re: lilyjazz fonts not working

2024-08-19 Thread Robert Garrigos
Oh that's a good one. I will definitely use it. Thanks.

⁣Robert Garrigós i Castro
+34 620 918 701
https://garrigos.cat

Get BlueMail for Android ​

On 19 d’ag. de 2024, 11:27, at 11:27, Mark Probert  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/otf
>  cp lilyjazz/svg/* ${LILY}/${REV}/fonts/svg
>  cp lilyjazz/stylesheet/* ${LILY}/${REV}/ly
>  cp lilyjazz/supplementary-files/**/*.otf ${LILY}/${REV}/fonts/otf
>
>—end
>
>> On 19 Aug 2024, at 12:56, Jeff Kopmanis  wrote:
>>
>> For me the installation was two-fold:
>> 1) install the OTF and SVG fonts in the .../fonts directory
>> 2) 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.
>>
>> https://github.com/OpenLilyPondFonts/lilyjazz
>>
>>
>>
>> On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos <mailto:rob...@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 <mailto:hans.aik...@aikebah.net>> va escriure:
>>>>
>>>>
>>>>
>>>>> On 18 Aug 2024, at 10:19, Robert Garrigos <mailto:rob...@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).
>>>>> 
>>>>>
>>>>> 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
>>>>
>>>> [1]
>https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
>>>>
>>>>>
>>>>> Thanks.
>>>>>
>>>>> 
>>>>> Robert Garrigós
>>>
>>
>>
>> --
>> Jeff Kopmanis
>> Medium: https://kopmanis.medium.com <https://kopmanis.medium.com/>
>> GLAAC: https://www.glaac.org/
>> University Lowbrow Astronomers: https://lowbrows.club
><https://lowbrows.club/>
>> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>>
>> ** Go Green and leave this email on the Screen! **


Re: lilyjazz fonts not working

2024-08-19 Thread Mark Probert
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/otf
  cp lilyjazz/svg/* ${LILY}/${REV}/fonts/svg
  cp lilyjazz/stylesheet/* ${LILY}/${REV}/ly
  cp lilyjazz/supplementary-files/**/*.otf ${LILY}/${REV}/fonts/otf

—end 

> On 19 Aug 2024, at 12:56, Jeff Kopmanis  wrote:
> 
> For me the installation was two-fold:
> 1) install the OTF and SVG fonts in the .../fonts directory
> 2) 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.
> 
> https://github.com/OpenLilyPondFonts/lilyjazz
> 
> 
> 
> On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos  <mailto:rob...@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 >> <mailto:hans.aik...@aikebah.net>> va escriure:
>>> 
>>> 
>>> 
>>>> On 18 Aug 2024, at 10:19, Robert Garrigos >>> <mailto:rob...@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).
>>>> 
>>>> 
>>>> 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
>>> 
>>> [1] 
>>> https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
>>> 
>>>> 
>>>> Thanks.
>>>> 
>>>> 
>>>> Robert Garrigós
>> 
> 
> 
> --
> Jeff Kopmanis
> Medium: https://kopmanis.medium.com <https://kopmanis.medium.com/>
> GLAAC: https://www.glaac.org/
> University Lowbrow Astronomers: https://lowbrows.club <https://lowbrows.club/>
> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
> 
> ** Go Green and leave this email on the Screen! **



Re: lilyjazz fonts not working

2024-08-18 Thread Robert Garrigos
I also added the stylesheets lilyjazz.ily, jazzextras.ily and jazzchords.ily 
into my lilypond install, although I had to translate the notes into English.

Robert

> El 19 ag. 2024, a les 4:56, Jeff Kopmanis  va escriure:
> 
> For me the installation was two-fold:
> 1) install the OTF and SVG fonts in the .../fonts directory
> 2) 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.
> 
> https://github.com/OpenLilyPondFonts/lilyjazz
> 
> 
> 
> On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos  <mailto:rob...@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 >> <mailto:hans.aik...@aikebah.net>> va escriure:
>>> 
>>> 
>>> 
>>>> On 18 Aug 2024, at 10:19, Robert Garrigos >>> <mailto:rob...@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).
>>>> 
>>>> 
>>>> 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
>>> 
>>> [1] 
>>> https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
>>> 
>>>> 
>>>> Thanks.
>>>> 
>>>> 
>>>> Robert Garrigós
>> 
> 
> 
> --
> Jeff Kopmanis
> Medium: https://kopmanis.medium.com <https://kopmanis.medium.com/>
> GLAAC: https://www.glaac.org/
> University Lowbrow Astronomers: https://lowbrows.club <https://lowbrows.club/>
> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
> 
> ** Go Green and leave this email on the Screen! **



Re: lilyjazz fonts not working

2024-08-18 Thread Jeff Kopmanis
For me the installation was two-fold:
1) install the OTF and SVG fonts in the .../fonts directory
2) 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.

https://github.com/OpenLilyPondFonts/lilyjazz



On Sun, Aug 18, 2024 at 5:01 AM Robert Garrigos  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  va
> escriure:
>
>
>
> On 18 Aug 2024, at 10:19, Robert Garrigos  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).
> 
>
> 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
>
> [1]
> https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
>
>
> Thanks.
>
> 
> Robert Garrigós
>
>
>

-- 
*Jeff Kopmanis*
Medium: https://kopmanis.medium.com
GLAAC: https://www.glaac.org/
University Lowbrow Astronomers: https://lowbrows.club
Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/

** Go Green and leave this email on the Screen! **


Re: lilyjazz fonts not working

2024-08-18 Thread Robert Garrigos
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  va 
> escriure:
> 
> 
> 
>> On 18 Aug 2024, at 10:19, Robert Garrigos  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).
>> 
>> 
>> 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
> 
> [1] 
> https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily
> 
>> 
>> Thanks.
>> 
>> 
>> Robert Garrigós



Re: lilyjazz fonts not working

2024-08-18 Thread Hans Aikema


> On 18 Aug 2024, at 10:19, Robert Garrigos  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).
> 
> 
> 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

[1] 
https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/stylesheet/lilyjazz.ily

> 
> Thanks.
> 
> 
> Robert Garrigós


lilyjazz fonts not working

2024-08-18 Thread Robert Garrigos
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).


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?

Thanks.


Robert Garrigós


Re: Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Laurie Savage
Found it!
https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/LilyPond-Fonts-Installation-And-Usage.txt

Laurie Savage
https://www.queensofthewest.com/

The Latest Queens of The West clips
https://www.youtube.com/playlist?list=PLgkDbfgWIb8_tQgEZRKeRWVSukoM2xoC_


On Sun, 21 Jan 2024 at 16:12, Laurie Savage  wrote:

> I can't remember, but this information is from the README. I can zip the
> files and post them somewhere if it has disappeared.
>
> =====
>  # lilyjazz: LilyJazz font package for lilypond
>
> This package provides the LilyJazz open-source font for lilypond.
>
> Original code by Torsten Hämmerle and Abraham Lee. For more information on
> producing Jazz lead sheets with Lilypond, checkout Abraham's [blog post](
> http://leighverlag.blogspot.fr/2015/12/mimicking-real-book-look.html).
>
> ## Installation
>
> Install using [lyp](https://github.com/noteflakes/lyp):
>
> ```bash
> $ lyp install lilyjazz
> ```
>
> ## Usage
>
> ```lilypond
> \require "lilyjazz"
>
> \layout {
>   \context {
> \Score \jazzOn
>   }
> }
>
> \markup { \override #'(font-name . "LilyJAZZ Text") "Some markup" }
>
> ```
>
> For more details see the included [example](
> https://github.com/noteflakes/lyp-lilyjazz/blob/master/test/test.ly).
>
> Another example is a "real book" style setting of ["All Of Me"](
> https://github.com/noteflakes/lyp-lilyjazz/blob/master/test/allofme.ly).
>
> ## Compatibility with Lilypond versions
>
> This font is known to work in Lilypond version 2.18.2 or later.
> =
>
> Laurie Savage
> https://www.queensofthewest.com/
>
> On Sun, 21 Jan 2024 at 16:05, Jeff Kopmanis  wrote:
>
>> Just for completeness sake, where do we fine the LilyJazz package?
>>
>> On Sat, Jan 20, 2024 at 11:59 PM Laurie Savage 
>> wrote:
>>
>>> Hi,
>>>
>>> I use the LilyJazz package (lilyjazz.ily, jazzchords.ily, and
>>> jazzextras.ily) to prepare lead sheets.
>>>
>>> These packages have to be upgraded with convert.ly before using them -
>>> and the fonts copied into Lilypond's font folder.
>>>
>>> Normally these packages survive the upgrade or throw errors if they
>>> haven't. 2.25.11 compilations proceed without error but don't result in any
>>> "jazz style" formatting unless they are converted.
>>>
>>> Laurie Savage
>>> https://www.queensofthewest.com/
>>>
>>
>>
>> --
>> *Jeff Kopmanis*
>> Medium: https://kopmanis.medium.com
>> GLAAC: https://www.glaac.org/
>> University Lowbrow Astronomers: http://umich.edu/~lowbrows
>> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>>
>> ** Go Green and leave this email on the Screen! **
>>
>


Re: Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Laurie Savage
I can't remember, but this information is from the README. I can zip the
files and post them somewhere if it has disappeared.

=
 # lilyjazz: LilyJazz font package for lilypond

This package provides the LilyJazz open-source font for lilypond.

Original code by Torsten Hämmerle and Abraham Lee. For more information on
producing Jazz lead sheets with Lilypond, checkout Abraham's [blog post](
http://leighverlag.blogspot.fr/2015/12/mimicking-real-book-look.html).

## Installation

Install using [lyp](https://github.com/noteflakes/lyp):

```bash
$ lyp install lilyjazz
```

## Usage

```lilypond
\require "lilyjazz"

\layout {
  \context {
\Score \jazzOn
  }
}

\markup { \override #'(font-name . "LilyJAZZ Text") "Some markup" }

```

For more details see the included [example](
https://github.com/noteflakes/lyp-lilyjazz/blob/master/test/test.ly).

Another example is a "real book" style setting of ["All Of Me"](
https://github.com/noteflakes/lyp-lilyjazz/blob/master/test/allofme.ly).

## Compatibility with Lilypond versions

This font is known to work in Lilypond version 2.18.2 or later.
=

Laurie Savage
https://www.queensofthewest.com/

On Sun, 21 Jan 2024 at 16:05, Jeff Kopmanis  wrote:

> Just for completeness sake, where do we fine the LilyJazz package?
>
> On Sat, Jan 20, 2024 at 11:59 PM Laurie Savage 
> wrote:
>
>> Hi,
>>
>> I use the LilyJazz package (lilyjazz.ily, jazzchords.ily, and
>> jazzextras.ily) to prepare lead sheets.
>>
>> These packages have to be upgraded with convert.ly before using them -
>> and the fonts copied into Lilypond's font folder.
>>
>> Normally these packages survive the upgrade or throw errors if they
>> haven't. 2.25.11 compilations proceed without error but don't result in any
>> "jazz style" formatting unless they are converted.
>>
>> Laurie Savage
>> https://www.queensofthewest.com/
>>
>
>
> --
> *Jeff Kopmanis*
> Medium: https://kopmanis.medium.com
> GLAAC: https://www.glaac.org/
> University Lowbrow Astronomers: http://umich.edu/~lowbrows
> Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/
>
> ** Go Green and leave this email on the Screen! **
>


Re: Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Jeff Kopmanis
Just for completeness sake, where do we fine the LilyJazz package?

On Sat, Jan 20, 2024 at 11:59 PM Laurie Savage 
wrote:

> Hi,
>
> I use the LilyJazz package (lilyjazz.ily, jazzchords.ily, and
> jazzextras.ily) to prepare lead sheets.
>
> These packages have to be upgraded with convert.ly before using them -
> and the fonts copied into Lilypond's font folder.
>
> Normally these packages survive the upgrade or throw errors if they
> haven't. 2.25.11 compilations proceed without error but don't result in any
> "jazz style" formatting unless they are converted.
>
> Laurie Savage
> https://www.queensofthewest.com/
>


-- 
*Jeff Kopmanis*
Medium: https://kopmanis.medium.com
GLAAC: https://www.glaac.org/
University Lowbrow Astronomers: http://umich.edu/~lowbrows
Orange Can Astronomy: https://www.facebook.com/orangecanastronomy/

** Go Green and leave this email on the Screen! **


Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Laurie Savage
Hi,

I use the LilyJazz package (lilyjazz.ily, jazzchords.ily, and
jazzextras.ily) to prepare lead sheets.

These packages have to be upgraded with convert.ly before using them - and
the fonts copied into Lilypond's font folder.

Normally these packages survive the upgrade or throw errors if they
haven't. 2.25.11 compilations proceed without error but don't result in any
"jazz style" formatting unless they are converted.

Laurie Savage
https://www.queensofthewest.com/


Re: Segno and Coda from LilyJazz in a DrumStaff

2024-01-14 Thread Paul Hodges

From:   Sebastien Richard  



 
 I usually stick to the official release but I don't mind trying beta releases. 
I'll try that ASAP



 
Bear in mind that you can install multiple versions of LilyPond without 
conflict.


Paul

Re: Segno and Coda from LilyJazz in a DrumStaff

2024-01-14 Thread Sebastien Richard
Hello

Thanks for the reply and the example

<<
To clarify, you want just the segno and coda marks in the LilyJazz font, while 
the rest of the notation remains in the default music font?  If so, I'm not 
completely sure but I don't think that can be done with the 2.24 series.  
However ...
>>
Yes that's exactly what I want


I usually stick to the official release but I don't mind trying beta releases. 
I'll try that ASAP

BR,

---
 Sébastien RICHARD



From: Michael Werner 
Sent: Sunday, January 14, 2024 10:13
To: Sebastien Richard 
Cc: lilypond-user@gnu.org 
Subject: Re: Segno and Coda from LilyJazz in a DrumStaff

Hi Sebastien,

On Sat, Jan 13, 2024 at 11:17 AM Sebastien Richard 
mailto:richards...@hotmail.com>> wrote:
Hi all,

I've been struggling with this for a long time without getting close to any 
solution.

How can I use the Segno & Coda from LilyJazz in the example below ?

To clarify, you want just the segno and coda marks in the LilyJazz font, while 
the rest of the notation remains in the default music font?  If so, I'm not 
completely sure but I don't think that can be done with the 2.24 series.  
However ...

As the 2.25 series has been developed, the arrival of 2.25.6 brought along a 
significantly redone font handling system. One of the new features is that font 
selection is now just another property, and can be modified on a per-grob 
basis. Which makes what you want fairly simple and straight forward. Once the 
LilyJazz font files have been placed as needed, it's just a matter of modifying 
the properties of the SegnoMark and CodaMark grobs.  Like this:

\version "2.25.12"

drum = \drummode {
  sn4 sn sn sn
  \segnoMark 1
  sn4 sn sn sn
  \codaMark 1
  sn4 sn sn sn
}

\score {
  \new DrumStaff {
\drum
  }
}

\layout {
  \context {
\Score
\override CodaMark.fonts.music = "lilyjazz"
\override SegnoMark.fonts.music = "lilyjazz"
  }
}

This will mean that you would have to make the jump to the development series, 
so you'll have to decide for yourself if that's something you're willing to do. 
 I can say that I've been using the development versions for a while and 
generally they're working just fine. The only real issue I've encountered was 
when the newer versions switched to Guile 3 one of the third-party packages I'm 
using didn't like that, but I've managed to get through that. Other than that 
all has been well. So if Guile 3 isn't for you, something between 2.25.6 and 
2.25.10 (I think it was .11 where Guile 3 came in) should be safe.
--
Michael



Re: Segno and Coda from LilyJazz in a DrumStaff

2024-01-14 Thread Michael Werner
Hi Sebastien,

On Sat, Jan 13, 2024 at 11:17 AM Sebastien Richard 
wrote:

> Hi all,
>
> I've been struggling with this for a long time without getting close to
> any solution.
>
> How can I use the Segno & Coda from LilyJazz in the example below ?
>

To clarify, you want just the segno and coda marks in the LilyJazz font,
while the rest of the notation remains in the default music font?  If so,
I'm not completely sure but I don't think that can be done with the 2.24
series.  However ...

As the 2.25 series has been developed, the arrival of 2.25.6 brought along
a significantly redone font handling system. One of the new features is
that font selection is now just another property, and can be modified on a
per-grob basis. Which makes what you want fairly simple and straight
forward. Once the LilyJazz font files have been placed as needed, it's just
a matter of modifying the properties of the SegnoMark and CodaMark grobs.
Like this:

\version "2.25.12"

drum = \drummode {
  sn4 sn sn sn
  \segnoMark 1
  sn4 sn sn sn
  \codaMark 1
  sn4 sn sn sn
}

\score {
  \new DrumStaff {
\drum
  }
}

\layout {
  \context {
    \Score
\override CodaMark.fonts.music = "lilyjazz"
\override SegnoMark.fonts.music = "lilyjazz"
  }
}

This will mean that you would have to make the jump to the development
series, so you'll have to decide for yourself if that's something you're
willing to do.  I can say that I've been using the development versions for
a while and generally they're working just fine. The only real issue I've
encountered was when the newer versions switched to Guile 3 one of the
third-party packages I'm using didn't like that, but I've managed to get
through that. Other than that all has been well. So if Guile 3 isn't for
you, something between 2.25.6 and 2.25.10 (I think it was .11 where Guile 3
came in) should be safe.
-- 
Michael


Segno and Coda from LilyJazz in a DrumStaff

2024-01-13 Thread Sebastien Richard
Hi all,

I've been struggling with this for a long time without getting close to any 
solution.

How can I use the Segno & Coda from LilyJazz in the example below ?

\version "2.24.2"

drum = \drummode {
  sn4 sn sn sn
  \segnoMark 1
  sn4 sn sn sn
  \codaMark 1
  sn4 sn sn sn
}

\score {
  \new DrumStaff \with {} \drum
  \layout { }
}

BR

---
 Sébastien RICHARD


Re: Getting Lilyjazz fonts back in business

2023-12-04 Thread Jan
Hi Mark,
Indeed, I missed the supplementary files when I manually installed the style. 
This did the trick.
Thanks a lot for your clear and prompt reply.
Jan

> On 4 Dec 2023, at 22:27, Mark Probert  wrote:
> 
> Hi, Jan.
> 
> There are four elements to making lilyjazz work. These are, in script form,
> 
>  sh "cp lilyjazz/otf/* #{lilypond}/#{REV}/fonts/otf"
>  sh "cp lilyjazz/svg/* #{lilypond}/#{REV}/fonts/svg"
>  sh "cp lilyjazz/stylesheet/* #{lilypond}/#{REV}/ly"
>  sh "cp lilyjazz/supplementary-files/**/*.otf #{lilypond}/#{REV}/fonts/otf”
> 
> I would guess you need to copy the supplimentary file otfs. This are for the 
> chords and text
> 
> HTH
> 
> ..mark.
> 
> 
> 
>> On 5 Dec 2023, at 06:29, Jan  wrote:
>> 
>> Dear Lilypond users,
>> I’m trying to use lilyjazz for a jazz lead-sheet, in order to reproduce the 
>> hand-written style. However, the fonts do not show up as they should, cf. 
>> the examples for the lilyjazz style. For example, this is a snipped of the 
>> AllOfMe.pdf example provided at GitHub :
>> 
>> 
>> Compiling the AllOfMe.ly code with lilypond 2.24.3 (after some tweaking to 
>> get rid of a deprecated syntax) leads to the following:
>> 
>> 
>> The notes are correctly reproduced, but the chords and text are using the 
>> default font, at least it seems. I believe that Lilyjazz is properly 
>> installed, the required “ily” styles are found and the fonts are installed 
>> where they should. 
>> Any help would be greatly appreciated.
>> Jan
> 
> 




Re: Getting Lilyjazz fonts back in business

2023-12-04 Thread Mark Probert
Hi, Jan.

There are four elements to making lilyjazz work. These are, in script form,

  sh "cp lilyjazz/otf/* #{lilypond}/#{REV}/fonts/otf"
  sh "cp lilyjazz/svg/* #{lilypond}/#{REV}/fonts/svg"
  sh "cp lilyjazz/stylesheet/* #{lilypond}/#{REV}/ly"
  sh "cp lilyjazz/supplementary-files/**/*.otf #{lilypond}/#{REV}/fonts/otf”

I would guess you need to copy the supplimentary file otfs. This are for the 
chords and text

HTH

 ..mark.



> On 5 Dec 2023, at 06:29, Jan  wrote:
> 
> Dear Lilypond users,
> I’m trying to use lilyjazz for a jazz lead-sheet, in order to reproduce the 
> hand-written style. However, the fonts do not show up as they should, cf. the 
> examples for the lilyjazz style. For example, this is a snipped of the 
> AllOfMe.pdf example provided at GitHub :
> 
> 
> Compiling the AllOfMe.ly code with lilypond 2.24.3 (after some tweaking to 
> get rid of a deprecated syntax) leads to the following:
> 
> 
> The notes are correctly reproduced, but the chords and text are using the 
> default font, at least it seems. I believe that Lilyjazz is properly 
> installed, the required “ily” styles are found and the fonts are installed 
> where they should. 
> Any help would be greatly appreciated.
> Jan





Getting Lilyjazz fonts back in business

2023-12-04 Thread Jan
Dear Lilypond users,
I’m trying to use lilyjazz for a jazz lead-sheet, in order to reproduce the 
hand-written style. However, the fonts do not show up as they should, cf. the 
examples for the lilyjazz style. For example, this is a snipped of the 
AllOfMe.pdf 
<https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/examples/AllOfMe.pdf>
 example provided at GitHub :



Compiling the AllOfMe.ly 
<https://github.com/OpenLilyPondFonts/lilyjazz/blob/master/examples/AllOfMe.ly> 
code with lilypond 2.24.3 (after some tweaking to get rid of a deprecated 
syntax) leads to the following:



The notes are correctly reproduced, but the chords and text are using the 
default font, at least it seems. I believe that Lilyjazz is properly installed, 
the required “ily” styles are found and the fonts are installed where they 
should. 
Any help would be greatly appreciated.
Jan

Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Knute Snortum
I like the second way and it works great!  Thanks.

--
Knute Snortum



On Fri, Aug 18, 2023 at 2:59 PM Jean Abou Samra  wrote:

> Oh, and one last thing: Abraham is right that it should be "lilyjazz" in
> lowercase letters, because LilyPond's own search just looks for the exact
> file name (though Fontconfig would accept "LilyJAZZ").
>


Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Jean Abou Samra
Oh, and one last thing: Abraham is right that it should be "lilyjazz" in
lowercase letters, because LilyPond's own search just looks for the exact file
name (though Fontconfig would accept "LilyJAZZ").


signature.asc
Description: This is a digitally signed message part


Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Jean Abou Samra
Le vendredi 18 août 2023 à 13:11 -0700, Knute Snortum a écrit :
> 1) Download a fresh LillyJazz.
> 2) Convert to 2.24 (AllOfMe.ly, jazzchords.ily, lilyjazz.ily, jazzextras.ily)
> 3) Add the ly:font-config-add-directory function to AllOfMe.ly:
> 4) Make sure lilyjazz.ily uses the correct font name:


That's not how it works.

Generally speaking, there are two types of fonts that LilyPond uses, text fonts
and music fonts. The full story of how fonts work is quite convoluted (there are
a ton of libraries involved: Pango, Fontconfig, HarfBuzz, FreeType, Cairo,
Ghostscript, and each of course comes with its own notion of a font, which
obviously doesn't help), but from the point of view of searching them, text
fonts use the Fontconfig library to discover fonts on the system, while music
fonts are handled by LilyPond directly, which doesn't have the full power of
Fontconfig but just searches them in the normal LilyPond include path.

What's messier still is that LilyPond *sometimes* searches music fonts using
Fontconfig. Specifically, when writing dynamics like "mf", the music font is
used just like a normal text font, and in that case it will use Fontconfig. On
the other hand, things like note heads and clefs go through the LilyPond-
specific paths.

As part of a grand project to revise all of LilyPond's font handling, I have
ongoing efforts to improve this situation, though currently delayed by student
duties plus some backlog on Frescobaldi:

https://gitlab.com/lilypond/lilypond/-/merge_requests/1957

In the meantime, you have two options:

A. Do what is explained in the installation instructions for LilyJAZZ: drop the
otf files into the data directory of the LilyPond installation, in a path like
/.../lilypond-2.24.2/share/lilypond/2.24.2/fonts/otf/, next to the emmentaler
OTF files. This is ugly but works.
B. Make the LilyJAZZ font directory known to *both* Fontconfig and the native
LilyPond search path. Namely, use ly:font-config-directory but *also* add it as
an include path, which can be done by passing the -I /path/to/dir option to the
lilypond command, or, from Frescobaldi, in Edit > Preferences > LilyPond
Preferences.




signature.asc
Description: This is a digitally signed message part


Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Knute Snortum
Still end with:

fatal error: cannot find font: `lilyjazz-11'

Exited with return code 1.

--
Knute Snortum



On Fri, Aug 18, 2023 at 1:29 PM Abraham Lee 
wrote:

> Instead of “LilyJAZZ” for the music and brace names, try lower case
> “lilyjazz”. If I remember right, it’s case sensitive since it’s looking for
> the exact file name prefix.
>
> Best,
> Abraham
>
>
>
> On Fri, Aug 18, 2023 at 2:11 PM Knute Snortum  wrote:
>
>> I'm trying to use the LilyPond 2.24 version ly:font-config-add-directory
>> with LilyJazz (https://github.com/OpenLilyPondFonts/lilyjazz).   My
>> procedure:
>>
>> 1) Download a fresh LillyJazz.
>> 2) Convert to 2.24 (AllOfMe.ly, jazzchords.ily, lilyjazz.ily,
>> jazzextras.ily)
>> 3) Add the ly:font-config-add-directory function to AllOfMe.ly:
>>
>> \version "2.24.0"
>> #(set-global-staff-size 18)
>> #(ly:font-config-add-directory "/home/knute/lilypond/lilyjazz/otf/")
>> #(ly:font-config-display-fonts)
>> \include "/home/knute/lilypond/lilyjazz/stylesheet/jazzchords.ily"
>> \include "/home/knute/lilypond/lilyjazz/stylesheet/lilyjazz.ily"
>> \include "/home/knute/lilypond/lilyjazz/stylesheet/jazzextras.ily"
>>
>> 4) Make sure lilyjazz.ily uses the correct font name:
>>
>> \version "2.24.0"
>>
>> \paper {
>>   #(define fonts
>>   (set-global-fonts
>>   #:music "LilyJAZZ"
>>   #:brace "LilyJAZZ"
>>   #:roman "lilyjazz-text"
>>   #:sans "lilyjazz-chord"
>>   #:factor (/ staff-height pt 20)
>>   ))
>> }
>>
>> But when I run AllOfMe.ly, I get:
>>
>> fatal error: cannot find font: `LilyJAZZ-11'
>>
>> Looking through in the displayed fonts I see:
>>
>> family LilyJAZZ-11
>>  LilyJAZZ\-11:style=11
>>
>> Can anyone help me?
>>
>> --
>> Knute Snortum
>>
>>


Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Abraham Lee
Instead of “LilyJAZZ” for the music and brace names, try lower case
“lilyjazz”. If I remember right, it’s case sensitive since it’s looking for
the exact file name prefix.

Best,
Abraham



On Fri, Aug 18, 2023 at 2:11 PM Knute Snortum  wrote:

> I'm trying to use the LilyPond 2.24 version ly:font-config-add-directory
> with LilyJazz (https://github.com/OpenLilyPondFonts/lilyjazz).   My
> procedure:
>
> 1) Download a fresh LillyJazz.
> 2) Convert to 2.24 (AllOfMe.ly, jazzchords.ily, lilyjazz.ily,
> jazzextras.ily)
> 3) Add the ly:font-config-add-directory function to AllOfMe.ly:
>
> \version "2.24.0"
> #(set-global-staff-size 18)
> #(ly:font-config-add-directory "/home/knute/lilypond/lilyjazz/otf/")
> #(ly:font-config-display-fonts)
> \include "/home/knute/lilypond/lilyjazz/stylesheet/jazzchords.ily"
> \include "/home/knute/lilypond/lilyjazz/stylesheet/lilyjazz.ily"
> \include "/home/knute/lilypond/lilyjazz/stylesheet/jazzextras.ily"
>
> 4) Make sure lilyjazz.ily uses the correct font name:
>
> \version "2.24.0"
>
>     \paper {
>   #(define fonts
>   (set-global-fonts
>   #:music "LilyJAZZ"
>   #:brace "LilyJAZZ"
>   #:roman "lilyjazz-text"
>   #:sans "lilyjazz-chord"
>   #:factor (/ staff-height pt 20)
>   ))
> }
>
> But when I run AllOfMe.ly, I get:
>
> fatal error: cannot find font: `LilyJAZZ-11'
>
> Looking through in the displayed fonts I see:
>
> family LilyJAZZ-11
>  LilyJAZZ\-11:style=11
>
> Can anyone help me?
>
> --
> Knute Snortum
>
>


Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Knute Snortum
I'm trying to use the LilyPond 2.24 version ly:font-config-add-directory
with LilyJazz (https://github.com/OpenLilyPondFonts/lilyjazz).   My
procedure:

1) Download a fresh LillyJazz.
2) Convert to 2.24 (AllOfMe.ly, jazzchords.ily, lilyjazz.ily,
jazzextras.ily)
3) Add the ly:font-config-add-directory function to AllOfMe.ly:

\version "2.24.0"
#(set-global-staff-size 18)
#(ly:font-config-add-directory "/home/knute/lilypond/lilyjazz/otf/")
#(ly:font-config-display-fonts)
\include "/home/knute/lilypond/lilyjazz/stylesheet/jazzchords.ily"
\include "/home/knute/lilypond/lilyjazz/stylesheet/lilyjazz.ily"
\include "/home/knute/lilypond/lilyjazz/stylesheet/jazzextras.ily"

4) Make sure lilyjazz.ily uses the correct font name:

\version "2.24.0"

\paper {
      #(define fonts
  (set-global-fonts
  #:music "LilyJAZZ"
  #:brace "LilyJAZZ"
  #:roman "lilyjazz-text"
  #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20)
  ))
}

But when I run AllOfMe.ly, I get:

    fatal error: cannot find font: `LilyJAZZ-11'

Looking through in the displayed fonts I see:

family LilyJAZZ-11
 LilyJAZZ\-11:style=11

Can anyone help me?

--
Knute Snortum
Starting lilypond 2.24.2 [AllOfMe.ly]...
Processing `/home/knute/lilypond/lilyjazz/examples/AllOfMe.ly'
Parsing...family Lato
 Lato:style=Italic
family FreeSerif
 
FreeSerif:style=Italic,курсивен,cursiva,kurzíva,kursiv,Λειψίας,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,cursiv,Курсив,ตัวเอียง,İtalik,kursif,Ležeče,kursīvs,kursivas,nghiêng,Etzana,तिरछा
family Yrsa
 Yrsa:style=Regular
family Tibetan Machine Uni
 Tibetan Machine Uni:style=Regular
family Liberation Mono
 Liberation Mono:style=Regular
family Umpush
 Umpush:style=Oblique
family Saab
 Saab:style=Regular
family DejaVu Math TeX Gyre
 DejaVu Math TeX Gyre:style=Regular
family Mitra
 Mitra:style=Regular
family MathJax_Script
 MathJax_Script:style=Regular
family aakar
 aakar:style=medium
family DejaVu Serif
 DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book
family FreeSans
 FreeSans:style=Oblique,наклонен,negreta 
cursiva,kurzíva,kursiv,Πλάγια,Cursiva,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,oblic,Курсив,İtalik,huruf
 miring,похилий,Ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा
family Keraleeyam
 Keraleeyam:style=Regular
family D05L
 D05L:style=Regular
family Peddana
 Peddana:style=Regular
family Liberation Sans Narrow
 Liberation Sans Narrow:style=Regular
family Samyak Malayalam
 Samyak Malayalam:style=Medium
family Padauk Book
 Padauk Book:style=Bold
family LMMonoLt10
 LMMonoLt10:style=Oblique
family Loma
 Loma:style=Bold Oblique
family Sawasdee
 Sawasdee:style=Bold Oblique
family Norasi
 Norasi:style=Bold Oblique
family DejaVu Serif
 DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic
family DejaVu Serif
 DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold
family FreeSans
 
FreeSans:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf
 tebal,жирний,Krepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट
family Umpush
 Umpush:style=Bold Oblique
family Liberation Sans
 Liberation Sans:style=Regular
family DejaVu Sans
 DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique
family Uroob
 Uroob:style=Regular
family DejaVu Sans Mono
 DejaVu Sans Mono:style=Bold Oblique
family mry_KacstQurn
 mry_KacstQurn:style=Regular
family Sarai
 Sarai:style=Regular
family Droid Sans Fallback
 Droid Sans Fallback:style=Regular
family Rasa
 Rasa,Rasa Medium:style=Medium,Regular
family Tlwg Typewriter
 Tlwg Typewriter:style=Bold
family Norasi
 Norasi:style=Oblique
family LMMonoPropLt10
 LMMonoPropLt10:style=Bold
family Samyak Gujarati
 Samyak Gujarati:style=Regular
family Liberation Serif
 Liberation Serif:style=Bold Italic
family Ubuntu Mono
 Ubuntu Mono:style=Bold
family Syamala Ramana
 Syamala Ramana:style=Regular
family Dyuthi
 Dyuthi:style=Regular
family LMRomanDemi10
 LMRomanDemi10:style=Regular
family Yrsa
 Yrsa:style=Bold
family LMSans10
 LMSans10:style=Bold
family DejaVu Serif
 DejaVu Serif:style=Bold Italic
family LMMonoPropLt10
 LMMonoPropLt10:style=BoldOblique
family LMSansQuot8
 LMSansQuot8:style=BoldOblique
family URW Gothic
 URW Gothic:style=Demi
family Samanata
 Samanata:style=Regular
family LMSansDemiCond10
 LMSansDemiCond10:style=Regular
family Lohit Gurmukhi
 Lohit Gurmukhi:style=Regular
family OpenSymbol
 OpenSymbol:style=Regular
family LMMonoProp10
 LMMonoProp10:style=Oblique
family TeX Gyre Schola
 TeX Gyre Schola:style=Bold
family Lato
 Lato,Lato Thin:style=Thin Italic,Italic
family Ubuntu
 Ubuntu,Ubuntu Light:style=Light,Regular
family P052
 P052:style=Bold
family LMMonoLtCond10
 LMMonoLtCond10:style=Oblique
family Likhan
 Likhan:style=Normal
fa

Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-04 Thread Xavier Scheuer
On Mon, 4 Apr 2022 at 11:35, Jacques Menu  wrote:
>
> Hello Hans,
>
> Installed the fonts from lilyjazz-master as system fonts with FontBook,
rebooted, but to no avail.
> That beats me…

Hello Jacques,

Sorry to ask, but it is not clear from your answer. Do you effectively
install the fonts liyjazz-chord and lilyjazz-text? The ones present in the
"supplementary-files" folder.
https://github.com/OpenLilyPondFonts/lilyjazz/tree/master/supplementary-files

Cheers,
Xavier

-- 
Xavier Scheuer 


Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-04 Thread Jacques Menu
Hello Hans,

Installed the fonts from lilyjazz-master as system fonts with FontBook, 
rebooted, but to no avail.
That beats me…

JM

> Le 4 avr. 2022 à 00:07, Hans Aikema  a écrit :
> 
> IIRC on Mac it only works when you install them in the system fonts. Fontbook 
> installs them in the user-fonts.
> 
>> On 3 Apr 2022, at 23:33, Jacques Menu  wrote:
>> 
>> Hello Xavier,
>> 
>> Thanks for the suggestion!
>> 
>> Here are the LilyJAZZ fonts available to LilyPond:
>> 
>> jacquesmenu@macmini: ~/Desktop > lilypond -dshow-available-fonts  > 
>> lilypond_available_fonts.txt 2>&1
>> 
>> jacquesmenu@macmini: ~/Desktop > grep LilyJAZZ lilypond_available_fonts.txt 
>> family LilyJAZZ-Brace
>>  LilyJAZZ\-Brace:style=Brace
>> family LilyJAZZ-11
>>  LilyJAZZ\-11:style=11
>> family LilyJAZZ-13
>>  LilyJAZZ\-13:style=13
>> family LilyJAZZ-14
>>  LilyJAZZ\-14:style=14
>> family LilyJAZZ-16
>>  LilyJAZZ\-16:style=16
>> family LilyJAZZ-18
>>  LilyJAZZ\-18:style=18
>> family LilyJAZZ-20
>>  LilyJAZZ\-20:style=20
>> family LilyJAZZ-23
>>  LilyJAZZ\-23:style=23
>> family LilyJAZZ-26
>>  LilyJAZZ\-26:style=26
>> 
>> Adding the fonts from lilyjazz-master to Mac OS’s font book does not change 
>> the output of the   -dshow-available-fonts option shown above.
>> 
>> JM
>> 
>>  lilyjazz-master to Mac
>> 
>> OS’s FontBook does not change the output.
>> 
>>> Le 3 avr. 2022 à 21:48, Xavier Scheuer >> <mailto:x.sche...@gmail.com>> a écrit :
>>> 
>>> On Sun, 3 Apr 2022 at 12:44, Jacques Menu >> <mailto:imj-muz...@bluewin.ch>> wrote:
>>> >
>>> > Hello Knute,
>>> >
>>> > Same result replacing define fonts by direct includes.
>>> 
>>> Hello Jacques,
>>> 
>>> Have you properly installed the fonts lilyjazz-text and lilyjazz-chord on 
>>> your operating system?
>>> Do they appear in the list of fonts obtained via lilypond 
>>> -dshow-available-fonts ?
>>> 
>>> See NR 1.8.3 Fonts
>>> http://lilypond.org/doc/v2.23/Documentation/notation/fonts.html 
>>> <http://lilypond.org/doc/v2.23/Documentation/notation/fonts.html>
>>> 
>>> Cheers,
>>> Xavier
>>> 
>>> -- 
>>> Xavier Scheuer mailto:x.sche...@gmail.com>>
>>> 
>> 



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-03 Thread Hans Aikema
IIRC on Mac it only works when you install them in the system fonts. Fontbook 
installs them in the user-fonts.

> On 3 Apr 2022, at 23:33, Jacques Menu  wrote:
> 
> Hello Xavier,
> 
> Thanks for the suggestion!
> 
> Here are the LilyJAZZ fonts available to LilyPond:
> 
> jacquesmenu@macmini: ~/Desktop > lilypond -dshow-available-fonts  > 
> lilypond_available_fonts.txt 2>&1
> 
> jacquesmenu@macmini: ~/Desktop > grep LilyJAZZ lilypond_available_fonts.txt 
> family LilyJAZZ-Brace
>  LilyJAZZ\-Brace:style=Brace
> family LilyJAZZ-11
>  LilyJAZZ\-11:style=11
> family LilyJAZZ-13
>  LilyJAZZ\-13:style=13
> family LilyJAZZ-14
>  LilyJAZZ\-14:style=14
> family LilyJAZZ-16
>  LilyJAZZ\-16:style=16
> family LilyJAZZ-18
>  LilyJAZZ\-18:style=18
> family LilyJAZZ-20
>  LilyJAZZ\-20:style=20
> family LilyJAZZ-23
>  LilyJAZZ\-23:style=23
> family LilyJAZZ-26
>  LilyJAZZ\-26:style=26
> 
> Adding the fonts from lilyjazz-master to Mac OS’s font book does not change 
> the output of the   -dshow-available-fonts option shown above.
> 
> JM
> 
>  lilyjazz-master to Mac
> 
> OS’s FontBook does not change the output.
> 
>> Le 3 avr. 2022 à 21:48, Xavier Scheuer  a écrit :
>> 
>> On Sun, 3 Apr 2022 at 12:44, Jacques Menu  wrote:
>> >
>> > Hello Knute,
>> >
>> > Same result replacing define fonts by direct includes.
>> 
>> Hello Jacques,
>> 
>> Have you properly installed the fonts lilyjazz-text and lilyjazz-chord on 
>> your operating system?
>> Do they appear in the list of fonts obtained via lilypond 
>> -dshow-available-fonts ?
>> 
>> See NR 1.8.3 Fonts
>> http://lilypond.org/doc/v2.23/Documentation/notation/fonts.html
>> 
>> Cheers,
>> Xavier
>> 
>> -- 
>> Xavier Scheuer 
>> 
> 


Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-03 Thread Jacques Menu
Hello Xavier,

Thanks for the suggestion!

Here are the LilyJAZZ fonts available to LilyPond:

jacquesmenu@macmini: ~/Desktop > lilypond -dshow-available-fonts  > 
lilypond_available_fonts.txt 2>&1

jacquesmenu@macmini: ~/Desktop > grep LilyJAZZ lilypond_available_fonts.txt 
family LilyJAZZ-Brace
 LilyJAZZ\-Brace:style=Brace
family LilyJAZZ-11
 LilyJAZZ\-11:style=11
family LilyJAZZ-13
 LilyJAZZ\-13:style=13
family LilyJAZZ-14
 LilyJAZZ\-14:style=14
family LilyJAZZ-16
 LilyJAZZ\-16:style=16
family LilyJAZZ-18
 LilyJAZZ\-18:style=18
family LilyJAZZ-20
 LilyJAZZ\-20:style=20
family LilyJAZZ-23
 LilyJAZZ\-23:style=23
family LilyJAZZ-26
 LilyJAZZ\-26:style=26

Adding the fonts from lilyjazz-master to Mac OS’s font book does not change the 
output of the   -dshow-available-fonts option shown above.

JM

 lilyjazz-master to Mac

OS’s FontBook does not change the output.

> Le 3 avr. 2022 à 21:48, Xavier Scheuer  a écrit :
> 
> On Sun, 3 Apr 2022 at 12:44, Jacques Menu  <mailto:imj-muz...@bluewin.ch>> wrote:
> >
> > Hello Knute,
> >
> > Same result replacing define fonts by direct includes.
> 
> Hello Jacques,
> 
> Have you properly installed the fonts lilyjazz-text and lilyjazz-chord on 
> your operating system?
> Do they appear in the list of fonts obtained via lilypond 
> -dshow-available-fonts ?
> 
> See NR 1.8.3 Fonts
> http://lilypond.org/doc/v2.23/Documentation/notation/fonts.html 
> <http://lilypond.org/doc/v2.23/Documentation/notation/fonts.html>
> 
> Cheers,
> Xavier
> 
> -- 
> Xavier Scheuer mailto:x.sche...@gmail.com>>
> 



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-03 Thread Xavier Scheuer
On Sun, 3 Apr 2022 at 12:44, Jacques Menu  wrote:
>
> Hello Knute,
>
> Same result replacing define fonts by direct includes.

Hello Jacques,

Have you properly installed the fonts lilyjazz-text and lilyjazz-chord on
your operating system?
Do they appear in the list of fonts obtained via lilypond
-dshow-available-fonts ?

See NR 1.8.3 Fonts
http://lilypond.org/doc/v2.23/Documentation/notation/fonts.html

Cheers,
Xavier

-- 
Xavier Scheuer 


Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-03 Thread Knute Snortum
I'm at the end of my knowledge about this problem.  Abraham Lee is the
author of LilyJAZZ fonts and the support document says he can be
connected at i...@musictypefoundry.com, but that was six years ago.
You could also try tisimst.lilyp...@gmail.com.

--
Knute Snortum

On Sun, Apr 3, 2022 at 3:44 AM Jacques Menu  wrote:
>
> Hello Knute,
>
> Same result replacing define fonts by direct includes.
>
> JM
>
> > Le 2 avr. 2022 à 16:30, Knute Snortum  a écrit :
> >
> > On Sat, Apr 2, 2022 at 6:21 AM Jacques Menu  wrote:
> > [snip]
> >> \paper {
> >>  #(define fonts
> >>     (set-global-fonts
> >>  #:music "lilyjazz"
> >>  #:brace "lilyjazz"
> >>  #:roman "lilyjazz-text"
> >>  #:sans "lilyjazz-chord"
> >>  #:factor (/ staff-height pt 20)
> >>  ))
> >> }
> >
> > Try removing  #(define fonts in the paper block and instead, add this
> > near the top of your input file:
> >
> > \include "jazzchords.ily"
> > \include "lilyjazz.ily"
> > \include "jazzextras.ily"
> >
> > --
> > Knute Snortum
>



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-03 Thread Jacques Menu
Hello Knute,

Same result replacing define fonts by direct includes.

JM

> Le 2 avr. 2022 à 16:30, Knute Snortum  a écrit :
> 
> On Sat, Apr 2, 2022 at 6:21 AM Jacques Menu  wrote:
> [snip]
>> \paper {
>>  #(define fonts
>> (set-global-fonts
>>  #:music "lilyjazz"
>>  #:brace "lilyjazz"
>>  #:roman "lilyjazz-text"
>>  #:sans "lilyjazz-chord"
>>  #:factor (/ staff-height pt 20)
>>  ))
>> }
> 
> Try removing  #(define fonts in the paper block and instead, add this
> near the top of your input file:
> 
> \include "jazzchords.ily"
> \include "lilyjazz.ily"
> \include "jazzextras.ily"
> 
> --
> Knute Snortum




Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-02 Thread Knute Snortum
On Sat, Apr 2, 2022 at 6:21 AM Jacques Menu  wrote:
[snip]
> \paper {
>   #(define fonts
>  (set-global-fonts
>   #:music "lilyjazz"
>   #:brace "lilyjazz"
>   #:roman "lilyjazz-text"
>   #:sans "lilyjazz-chord"
>   #:factor (/ staff-height pt 20)
>   ))
> }

Try removing  #(define fonts in the paper block and instead, add this
near the top of your input file:

\include "jazzchords.ily"
\include "lilyjazz.ily"
\include "jazzextras.ily"

--
Knute Snortum



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-02 Thread Tim's Bitstream



> On Apr 2, 2022, at 8:22 AM, Jacques Menu  wrote:
> The default Lilypond in Frescobaldi is:
> 
>   /Applications/LilyPond/lilypond-2.23.6/bin/lilypond
> 
> With:
> 
> \paper {
>   #(define fonts
>  (set-global-fonts
>   #:music "lilyjazz"
>   #:brace "lilyjazz"
>   #:roman "lilyjazz-text"
>   #:sans "lilyjazz-chord"
>   #:factor (/ staff-height pt 20)
>   ))
> }

Try explicitly defining the path to the fonts relative to the main Lilypond 
directory, maybe, rather than just the font name (e.g., ../../lilyjazz)?  I had 
to do that as shown in the example I posted in order to get it to work.



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-02 Thread Jacques Menu
Hello Knute,

> Le 1 avr. 2022 à 16:31, Knute Snortum  a écrit :
> 
> How did you install the LilyJAZZ fonts?  If you go to this URL...
> 
> https://github.com/OpenLilyPondFonts/lilyjazz 
> <https://github.com/OpenLilyPondFonts/lilyjazz>
> 
> ...and click on the green Code button, you can download the fonts as a Zip 
> file.  Unzip it somewhere, then follow the instructions in the 
> LilyPond-Fonts-and -Installation-Guide.txt file.  Note that where you put the 
> fonts must match the version of LilyPond you're using, if you have multiple 
> versions. 

Thanks for the link, much appreciated.

I now have Lily 2.23.6 installed in /Applications/LilyPond/lilypond-2.23.6:,

jacquesmenu@macmini: /Applications/LilyPond/lilypond-2.23.6 > ls -sal bin
total 21576
0 drwxr-xr-x  12 jacquesmenu  staff   384 Feb  7 10:45 .
0 drwxr-xr-x@  9 jacquesmenu  staff   288 Feb  8 17:59 ..
8 -rwxr-xr-x   1 jacquesmenu  staff93 Feb  7 10:45 abc2ly
8 -rwxr-xr-x   1 jacquesmenu  staff97 Feb  7 10:45 convert-ly
8 -rwxr-xr-x   1 jacquesmenu  staff93 Feb  7 10:45 etf2ly
8 -rwxr-xr-x   1 jacquesmenu  staff95 Feb  7 10:45 lilymidi
21504 -rwxr-xr-x   1 jacquesmenu  staff  11009976 Feb  7 10:45 lilypond
8 -rwxr-xr-x   1 jacquesmenu  staff   100 Feb  7 10:45 lilypond-book
8 -rwxr-xr-x   1 jacquesmenu  staff   241 Feb  7 10:45 
lilypond-invoke-editor
8 -rwxr-xr-x   1 jacquesmenu  staff95 Feb  7 10:45 lilysong
8 -rwxr-xr-x   1 jacquesmenu  staff94 Feb  7 10:45 midi2ly
8 -rwxr-xr-x   1 jacquesmenu  staff98 Feb  7 10:45 musicxml2ly

 with the lily jazz fonts files in ‘font’ sub-directory:

jacquesmenu@macmini: /Applications/LilyPond/lilypond-2.23.6 > find . -name 
"*lilyjazz*" -print
./share/lilypond/2.23.6/fonts/svg/lilyjazz-13.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-11.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-14.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-16.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-26.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-18.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-20.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-brace.svg
./share/lilypond/2.23.6/fonts/svg/lilyjazz-23.svg
./share/lilypond/2.23.6/fonts/otf/lilyjazz-26.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-18.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-20.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-brace.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-23.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-13.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-11.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-14.otf
./share/lilypond/2.23.6/fonts/otf/lilyjazz-16.otf

The default Lilypond in Frescobaldi is:

/Applications/LilyPond/lilypond-2.23.6/bin/lilypond

With:

\paper {
  #(define fonts
 (set-global-fonts
  #:music "lilyjazz"
  #:brace "lilyjazz"
  #:roman "lilyjazz-text"
  #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20)
  ))
}

I get:



while I used to get:



Hence my OP...

JM









Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-01 Thread Jean Abou Samra

Le 01/04/2022 à 19:08, Tim McNamara a écrit :
Note that I use a very outdated Lilypond version because it works for 
me just fine; the updates make for changes in input that I just don’t 
have the time or energy to learn.



convert-ly does a good job of updating input syntax. Usually, little 
remains to convert by hand.


Jean



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-01 Thread Tim McNamara

> What I’d like is to have the chord names such Em7 in the lilyjazz font too, 
> though.

Note that I use a very outdated Lilypond version because it works for me just 
fine; the updates make for changes in input that I just don’t have the time or 
energy to learn.  I am a part time hobbyist musician with no background in 
coding, hence my resistance to change.  ;-)  I am also using this on a 9 year 
old Mac that is a couple of MacOS-es behind, with Frescobaldi as the front-end. 
 Macs historically have had issues with where the fonts are placed (had to be 
within the Lilypond directory rather than the usual system font location; that 
may not be true with newer versions of Lilypond).

This is the whole template for my charts, including some stuff that’s not 
germane to the discussion.  The template is also pretty old-fashioned and at 
least 10 years old; there are certainly much better ways to do this.  But it 
works for me and I can put together charts for the whole band in short order.  
I don’t know if it will be helpful to you since it is so outdated.

in \chordmode and \markup, the command 

\override ChordNames . ChordName #'font-name = “LilyJAZZText” 

invokes the use of the font.  I have always been puzzled as to why fonts for 
all forms of text (chordnames, markup, etc.) can’t be globally specified with a 
single statement (maybe it can in newer versions of Lilypond).  

in \melody, \jazzOn initiates using the font for notes and glyphs; \jazzOff 
terminates it and the font goes back to the default.




\version "2.18.2"

#(ly:set-option 'delete-intermediate-files #t)

\paper {
#(set-paper-size "letter")
indent = 0.0
ragged-last = ##f

} 

\header {
title = \markup {  \override #'(font-name . "LilyJAZZText")
   \fontsize #4  “Title" }
  subtitle = \markup {  \override #'(font-name . "LilyJAZZText")
   \fontsize #2  “Subtitle" }
  composer = \markup {  \override #'(font-name . "LilyJAZZText") 
  “Name" }
  meter = \markup {  \override #'(font-name . "LilyJAZZText")
  “Groove" }
  copyright = \markup {  \override #'(font-name . "LilyJAZZText")
   “As Needed" }
}

\include "../../roemer-chords.ly"
\include "../../LilyJAZZ.ily"
% \include "../../multimeasure.ly"
% \include "../../naturalize.scm"

\markup {  \override #'(font-name . "LilyJAZZText")
\fill-line {
\column {
\line { These are used for specifying soloing order }
\line { And other arrangement concerns }
\line { \hspace #0 }
}
}
}


harmonies =  \chordmode {
\override ChordNames . ChordName #'font-name = "LilyJAZZText"
\override ChordName #'font-size = #3
\override ParenthesesItem #'font-size = #1

% chords go here

}

melody =\relative c' {
\jazzOn
\numericTimeSignature
\time 4/4
\clef treble
\key 

\set Score.markFormatter = #format-mark-box-alphabet
% \mark #1

% \override Staff.KeySignature #'break-visibility = #all-invisible
% \override Staff.Clef #'break-visibility = #all-invisible
% \once \override Score.RehearsalMark #'break-visibility = 
begin-of-line-invisible

\set Score.markFormatter = #format-mark-box-alphabet
% \mark #1

% melody goes here

 
}

\score {
  <<

\new ChordNames
 {
  \set chordChanges = ##t
  \harmonies
}
\new Staff \melody
  >>  

}



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-01 Thread Knute Snortum
How did you install the LilyJAZZ fonts?  If you go to this URL...

https://github.com/OpenLilyPondFonts/lilyjazz

...and click on the green Code button, you can download the fonts as a Zip
file.  Unzip it somewhere, then follow the instructions in the
LilyPond-Fonts-and -Installation-Guide.txt file.  Note that where you put
the fonts must match the version of LilyPond you're using, if you have
multiple versions.

--
Knute Snortum



On Fri, Apr 1, 2022 at 6:53 AM Jacques Menu  wrote:

> Hello Knute,
>
> Your example runs here too, giving:
>
>
> What I’d like is to have the chord names such Em7 in the lilyjazz font
> too, though.
>
> Thanks if you can help!
>
> JM
>
> Le 1 avr. 2022 à 02:11, Knute Snortum  a écrit :
>
> Any hint why the chord names don’t use the lilyjazz font?
>
>
> \paper {
> #(define fonts
>(set-global-fonts
> #:music "lilyjazz"
> #:brace "lilyjazz"
> #:roman "lilyjazz-text"
> #:sans "lilyjazz-chord"
> #:chords "lilyjazz-chord"
>
>
> You don't need all the fonts defined in the \paper section, and I
> don't think you have needed them since 2.19.11.  The code below works
> for me:
>
> %%%
> \version "2.23.6"
>
> \include "jazzchords.ily"
> \include "lilyjazz.ily"
> \include "jazzextras.ily"
>
> \markup { Some text }
>
> myChordSequence = \chordmode {
>  \set chordChanges = ##t
>  %\set chordNameExceptions = #chExceptions
>  e2:m7 a:7 | e:m7 a:7 |
> }
>
> Part_POne_Staff_One_Voice_One = \absolute {
>  \language "nederlands"
>
>  \set Score.rehearsalMarkFormatter = #format-mark-box-letters
>  %  \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet % pour
> le "I"
>  \override Score.RehearsalMark.font-size = #+5
>  \textLengthOn
>
>  \key d \major
>
>  \mark \default
>
>  \clef "treble"
>  b'8 [ a' b' a'  ~ ] a' b'4. | % 6
>  \barNumberCheck #2
>  r8 b'4. a'8 b'4. ^\markup {\musicglyph #"scripts.segno" } | % 7
>  \barNumberCheck #3
>  | % 7
> }
>
> \score {
>  <<
>
>\new ChordNames \myChordSequence
>
>\new Staff = "Part_POne_Staff_One"
>\with {
>}
><<
>  \context Voice = "Part_POne_Staff_One_Voice_One" <<
>\Part_POne_Staff_One_Voice_One
>
>
>
>
>
> }
> %%%
>
> --
> Knute Snortum
>
>
>


Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-04-01 Thread Jacques Menu
Hello Knute,

Your example runs here too, giving:



What I’d like is to have the chord names such Em7 in the lilyjazz font too, 
though.

Thanks if you can help!

JM

> Le 1 avr. 2022 à 02:11, Knute Snortum  a écrit :
> 
>>> Any hint why the chord names don’t use the lilyjazz font?
>>> 
>>> 
>>>>> \paper {
>>>>> #(define fonts
>>>>>(set-global-fonts
>>>>> #:music "lilyjazz"
>>>>>     #:brace "lilyjazz"
>>>>> #:roman "lilyjazz-text"
>>>>> #:sans "lilyjazz-chord"
>>>>> #:chords "lilyjazz-chord"
> 
> You don't need all the fonts defined in the \paper section, and I
> don't think you have needed them since 2.19.11.  The code below works
> for me:
> 
> %%%
> \version "2.23.6"
> 
> \include "jazzchords.ily"
> \include "lilyjazz.ily"
> \include "jazzextras.ily"
> 
> \markup { Some text }
> 
> myChordSequence = \chordmode {
>  \set chordChanges = ##t
>  %\set chordNameExceptions = #chExceptions
>  e2:m7 a:7 | e:m7 a:7 |
> }
> 
> Part_POne_Staff_One_Voice_One = \absolute {
>  \language "nederlands"
> 
>  \set Score.rehearsalMarkFormatter = #format-mark-box-letters
>  %  \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet % pour le 
> "I"
>  \override Score.RehearsalMark.font-size = #+5
>  \textLengthOn
> 
>  \key d \major
> 
>  \mark \default
> 
>  \clef "treble"
>  b'8 [ a' b' a'  ~ ] a' b'4. | % 6
>  \barNumberCheck #2
>  r8 b'4. a'8 b'4. ^\markup {\musicglyph #"scripts.segno" } | % 7
>  \barNumberCheck #3
>  | % 7
> }
> 
> \score {
>  <<
> 
>\new ChordNames \myChordSequence
> 
>\new Staff = "Part_POne_Staff_One"
>\with {
>}
><<
>  \context Voice = "Part_POne_Staff_One_Voice_One" <<
>\Part_POne_Staff_One_Voice_One
>>> 
>>> 
> 
>>> 
> }
> %%%
> 
> --
> Knute Snortum



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-03-31 Thread Knute Snortum
> > Any hint why the chord names don’t use the lilyjazz font?
> >
> >
> >>> \paper {
> >>>  #(define fonts
> >>> (set-global-fonts
> >>>  #:music "lilyjazz"
> >>>  #:brace "lilyjazz"
> >>>  #:roman "lilyjazz-text"
> >>>  #:sans "lilyjazz-chord"
> >>>  #:chords "lilyjazz-chord"

You don't need all the fonts defined in the \paper section, and I
don't think you have needed them since 2.19.11.  The code below works
for me:

%%%
\version "2.23.6"

\include "jazzchords.ily"
\include "lilyjazz.ily"
\include "jazzextras.ily"

\markup { Some text }

myChordSequence = \chordmode {
  \set chordChanges = ##t
  %\set chordNameExceptions = #chExceptions
  e2:m7 a:7 | e:m7 a:7 |
}

Part_POne_Staff_One_Voice_One = \absolute {
  \language "nederlands"

  \set Score.rehearsalMarkFormatter = #format-mark-box-letters
  %  \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet % pour le "I"
  \override Score.RehearsalMark.font-size = #+5
  \textLengthOn

  \key d \major

  \mark \default

  \clef "treble"
  b'8 [ a' b' a'  ~ ] a' b'4. | % 6
  \barNumberCheck #2
  r8 b'4. a'8 b'4. ^\markup {\musicglyph #"scripts.segno" } | % 7
  \barNumberCheck #3
  | % 7
}

\score {
  <<

\new ChordNames \myChordSequence

\new Staff = "Part_POne_Staff_One"
\with {
}
<<
  \context Voice = "Part_POne_Staff_One_Voice_One" <<
\Part_POne_Staff_One_Voice_One
  >>
>>

  >>
}
%%%

--
Knute Snortum



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-03-31 Thread Jean Abou Samra

Le 31/03/2022 à 08:54, Jacques Menu a écrit :

Le 30 mars 2022 à 21:06, Valentin Petzel  a écrit :

For me changing the font make no problems. You might want to check if 
you have
the relevant font files in the font path. Are you on Linux or 
Windows? Maybe

are some point something about font-config has changed.

About markFormatter: This one changed to rehearsalMarkFormatter, 
along with

adding formatter options for the all kinds of marks.


Thanks Jean and Valentin, that solves this issue. I’ve probably used 
an outdated convert-ly.


Any hint why the chord names don’t use the lilyjazz font?



\paper {
 #(define fonts
(set-global-fonts
 #:music "lilyjazz"
 #:brace "lilyjazz"
     #:roman "lilyjazz-text"
 #:sans "lilyjazz-chord"
 #:chords "lilyjazz-chord"



#:chords is not, and as far as I can see has never been a valid
keyword argument to set-global-fonts. Are you using an include
file redefining set-global-fonts?

What version of LilyJAZZ are you using? There are so many of them in
the wild ... Can you send it? Remember that some of them require 
installation

in LilyPond's internal folders; did you perform that operation if relevant?

Jean



Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-03-30 Thread Jacques Menu
> Le 30 mars 2022 à 21:06, Valentin Petzel  a écrit :
> 
> For me changing the font make no problems. You might want to check if you 
> have 
> the relevant font files in the font path. Are you on Linux or Windows? Maybe 
> are some point something about font-config has changed.
> 
> About markFormatter: This one changed to rehearsalMarkFormatter, along with 
> adding formatter options for the all kinds of marks.

Thanks Jean and Valentin, that solves this issue. I’ve probably used an 
outdated convert-ly.

Any hint why the chord names don’t use the lilyjazz font?



>> \paper {
>>  #(define fonts
>>     (set-global-fonts
>>  #:music "lilyjazz"
>>  #:brace "lilyjazz"
>>  #:roman "lilyjazz-text"
>>  #:sans "lilyjazz-chord"
>>  #:chords "lilyjazz-chord"
>>  #:factor (/ staff-height pt 20)
>>  ))

JM




Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-03-30 Thread Valentin Petzel
For me changing the font make no problems. You might want to check if you have 
the relevant font files in the font path. Are you on Linux or Windows? Maybe 
are some point something about font-config has changed.

About markFormatter: This one changed to rehearsalMarkFormatter, along with 
adding formatter options for the all kinds of marks.

Cheers,
Valentin

Am Mittwoch, 30. März 2022, 13:23:39 CEST schrieb Jacques Menu:
> Hello folks,
> 
> The setting:
> 
>\set Score.markFormatter = #format-mark-box-letters
> 
> has no effect here from version 2.23 on, see attached
> 
> Also, the usual :
> 
> \paper {
>   #(define fonts
>  (set-global-fonts
>   #:music "lilyjazz"
>   #:brace "lilyjazz"
>   #:roman "lilyjazz-text"
>   #:sans "lilyjazz-chord"
>   #:chords "lilyjazz-chord"
>   #:factor (/ staff-height pt 20)
>   ))
> 
> has no effect on chord names:
> 
> 
> 
> Thanks for your help!
> 
> JM
> 
> --
> 
> %%
> 
> \version "2.23.6"
> 
> \paper {
>   #(define fonts
>  (set-global-fonts
>   #:music "lilyjazz"
>   #:brace "lilyjazz"
>   #:roman "lilyjazz-text"
>   #:sans "lilyjazz-chord"
>   #:factor (/ staff-height pt 20)
>   ))
> }
> 
> \markup { Some text }
> 
> myChordSequence = \chordmode {
>   \set chordChanges = ##t
>   %\set chordNameExceptions = #chExceptions
>   e2:m7 a:7 | e:m7 a:7 |
> }
> 
> Part_POne_Staff_One_Voice_One = \absolute {
>   \language "nederlands"
> 
>   \set Score.markFormatter = #format-mark-box-letters
>   %  \set Score.markFormatter = #format-mark-box-alphabet % pour le "I"
>   \override Score.RehearsalMark.font-size = #+5
>   \textLengthOn
> 
>   \key d \major
> 
>   \mark \default
> 
>   \clef "treble"
>   b'8 [ a' b' a'  ~ ] a' b'4. | % 6
>   \barNumberCheck #2
>   r8 b'4. a'8 b'4. ^\markup {\musicglyph #"scripts.segno" } | % 7
>   \barNumberCheck #3
> 
>   | % 7
> 
> }
> 
> \score {
>   <<
> 
> \new ChordNames \myChordSequence
> 
> \new Staff = "Part_POne_Staff_One"
> \with {
> }
> <<
>   \context Voice = "Part_POne_Staff_One_Voice_One" <<
> \Part_POne_Staff_One_Voice_One
> 
> 
> 
> 
> }
> 
> 
> %%



signature.asc
Description: This is a digitally signed message part.


Re: Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-03-30 Thread Jean Abou Samra

Hi Jacques,

Le 30/03/2022 à 13:23, Jacques Menu a écrit :

Hello folks,

The setting:

 \set Score.markFormatter = #format-mark-box-letters

has no effect here from version 2.23 on, see attached



I don't have comments on LilyJAZZ right now, but about markFormatter: 
run convert-ly to update your file.


Cheers,
Jean



Lilyjazz font and Score.markFormatter problem with Lily 2.23.6

2022-03-30 Thread Jacques Menu
Hello folks,

The setting:

 \set Score.markFormatter = #format-mark-box-letters 

has no effect here from version 2.23 on, see attached

Also, the usual :

\paper {
  #(define fonts
 (set-global-fonts
  #:music "lilyjazz"
  #:brace "lilyjazz"
      #:roman "lilyjazz-text"
  #:sans "lilyjazz-chord"
  #:chords "lilyjazz-chord"
  #:factor (/ staff-height pt 20)
  ))

has no effect on chord names:



Thanks for your help!

JM

--

%%

\version "2.23.6"

\paper {
  #(define fonts
     (set-global-fonts
  #:music "lilyjazz"
  #:brace "lilyjazz"
  #:roman "lilyjazz-text"
  #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20)
  ))
}

\markup { Some text }

myChordSequence = \chordmode {
  \set chordChanges = ##t
  %\set chordNameExceptions = #chExceptions
  e2:m7 a:7 | e:m7 a:7 |
}

Part_POne_Staff_One_Voice_One = \absolute {
  \language "nederlands"

  \set Score.markFormatter = #format-mark-box-letters
  %  \set Score.markFormatter = #format-mark-box-alphabet % pour le "I"
  \override Score.RehearsalMark.font-size = #+5
  \textLengthOn

  \key d \major

  \mark \default

  \clef "treble"
  b'8 [ a' b' a'  ~ ] a' b'4. | % 6
  \barNumberCheck #2
  r8 b'4. a'8 b'4. ^\markup {\musicglyph #"scripts.segno" } | % 7
  \barNumberCheck #3
  | % 7
}

\score {
  <<

\new ChordNames \myChordSequence

\new Staff = "Part_POne_Staff_One"
\with {
}
<<
  \context Voice = "Part_POne_Staff_One_Voice_One" <<
\Part_POne_Staff_One_Voice_One
  >>
>>

  >>
}


%%

Re: LilyJazz 2.0

2017-10-26 Thread Urs Liska



Am 26.10.2017 um 07:26 schrieb Curt:

With this release, I am also hopeful we can update the other parts of the 
website that have out of date information:

http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/
http://lilypondblog.org/2014/09/lilyponds-look-and-feel/


Do you have an account on lilypondblog.org (I don't think so). If not 
please mail me privately and I set one up for you.


Urs

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


LilyJazz 2.0

2017-10-25 Thread Curt
Hi everyone!

About two weeks ago I was struggling to figure out how to get lilyjazz 
installed. Due to the recent changes with lilypond’s fonts, many of the 
instructions online were out of date, and the downloadable versions of the font 
were out of date and had incomplete instructions. 

Abraham was nice enough to give me the most up-to-date version, and 
instructions. As a result of that, I’ve issued a “pull request” to the git 
repository that had the previous version of the font. The PR is basically the 
contents of what Abraham sent me - the updated fonts, documentation, up-to-date 
stylesheets, and examples. Abraham has also looked over the PR and approved its 
accuracy.

https://github.com/OpenLilyPondFonts/lilyjazz/pull/2

If this can be approved by the maintainer of OpenLilyPondFonts (Steve Lacy?), 
then we will have a publicly available latest version of LilyJazz.

With this release, I am also hopeful we can update the other parts of the 
website that have out of date information:

http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/
http://lilypondblog.org/2014/09/lilyponds-look-and-feel/

In addition, the lyp-packages (Sharon?) lilyjazz package could be updated to 
use the newer font files:
https://github.com/lyp-packages/lilyjazz

Finally, I could have sworn that I saw references to defunct previous website 
of the font, perhaps to fonts.openlilylib.org, on the lilypond official 
documentation, perhaps the changelog… but I cannot seem to find it now, so 
maybe that has been fixed already.

Thanks!
Curt


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


Re: lilyjazz

2017-10-10 Thread Abraham Lee
Hi, Curt!

On Tue, Oct 10, 2017 at 1:46 AM Curt  wrote:

> Thanks. Yes, I’ll install 2.19.65. I believe it’s the lilyjazz.ly and
> jazzchords.ly files (not sure if anything else is needed?) that are still
> required. Does anyone have copies of those?
>
> I could update my copies of the old ones with the new filenames of the
> *.otf files (for instance, I think jazzchords.ly needs to be updated in
> one place to point to lilyjazz-chord), but I’m not sure if there were other
> changes made in the updated version of those files.
>

I tried responding to your other private message to me. Did you receive it?

Best,
Abraham

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


Re: lilyjazz

2017-10-10 Thread Curt
Thanks. Yes, I’ll install 2.19.65. I believe it’s the lilyjazz.ly 
<http://lilyjazz.ly/> and jazzchords.ly <http://jazzchords.ly/> files (not sure 
if anything else is needed?) that are still required. Does anyone have copies 
of those? 

I could update my copies of the old ones with the new filenames of the *.otf 
files (for instance, I think jazzchords.ly <http://jazzchords.ly/> needs to be 
updated in one place to point to lilyjazz-chord), but I’m not sure if there 
were other changes made in the updated version of those files.

Thanks,
Curt

> On Oct 10, 2017, at 12:40 AM, Malte Meyn  <mailto:lilyp...@maltemeyn.de>> wrote:
> 
> 
> 
> Am 10.10.2017 um 02:14 schrieb Curt:
>> Can someone tell me what I need to do? Also, is there some up to date 
>> lilyjazz installation article that I’ve missed?  I googled a bunch and there 
>> are out of date articles, and other articles redirecting us to “superseding” 
>> articles that don’t actually have information.
> 
> The way notation fonts are included in LilyPond has changed in the 
> development version 2.19.12. The “OpenLilyPondFonts” are meant to be used 
> with a later version or with a patched 2.18.2, not with \jazzOn afaik.
> 
> When these fonts were distributed via fonts.openlilylib.org 
> <http://fonts.openlilylib.org/> there was an installation tutorial on that 
> site. This information is also part of the Documentation of the upcoming 
> 2.20.0 release.
> 
> I would suggest to either wait some weeks (hopefully not long anymore) for 
> that release, or—if you’re ok with installing “unstable” releases—install the 
> latest version 2.19.65 and ask here for the header files for LilyJAZZ in that 
> version (why aren’t these files found at the font repo?).
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org <mailto:lilypond-user@gnu.org>
> https://lists.gnu.org/mailman/listinfo/lilypond-user

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


Re: lilyjazz

2017-10-10 Thread Malte Meyn



Am 10.10.2017 um 02:14 schrieb Curt:

Can someone tell me what I need to do? Also, is there some up to date lilyjazz 
installation article that I’ve missed?  I googled a bunch and there are out of 
date articles, and other articles redirecting us to “superseding” articles that 
don’t actually have information.


The way notation fonts are included in LilyPond has changed in the 
development version 2.19.12. The “OpenLilyPondFonts” are meant to be 
used with a later version or with a patched 2.18.2, not with \jazzOn afaik.


When these fonts were distributed via fonts.openlilylib.org there was an 
installation tutorial on that site. This information is also part of the 
Documentation of the upcoming 2.20.0 release.


I would suggest to either wait some weeks (hopefully not long anymore) 
for that release, or—if you’re ok with installing “unstable” 
releases—install the latest version 2.19.65 and ask here for the header 
files for LilyJAZZ in that version (why aren’t these files found at the 
font repo?).


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


lilyjazz

2017-10-09 Thread Curt
Hi, I’m stumped on how to install lilyjazz on my Mac.

I cloned https://github.com/OpenLilyPondFonts/lilyjazz and installed the fonts 
from otf/ and supplementary-fonts/ into FontBook. So now in FontBook, I have 
the 8 “numbered” lilyjazz fonts, lilyjazz-brace, lilyjazz-chord, and 
lilyjazz-text. I didn’t do anything with the stuff in the svg/ directory, not 
sure what those are for.

I couldn’t find lilyjazz.ily or jazzchords.ily anywhere, so I installed lyp and 
installed the lilyjazz package from there.

Then, I just copied lilyjazz.ly and jazzchords.ly into a “sample” directory of 
mine. In the same directory, I created this common lilyjazz example:

\version “2.18.2"
\include “lilyjazz.ly"

\score { 
\new Staff {
\jazzOn
c'4 c' \tuplet 3/2 { d'8-- es'-- e'-- } g'4 ~ |
g'4 r r8 f'-^ \noBeam es' c'-> \bar "|."
}
}

And when I render, I’m getting two bars but where every note is actually a left 
bracket of various heights, rather than the hand-drawn look I expect.

I also was unable to render the AllOfMe example, but I’m suspecting it might 
require 2.19 (I’m on 2.18.2)

Can someone tell me what I need to do? Also, is there some up to date lilyjazz 
installation article that I’ve missed?  I googled a bunch and there are out of 
date articles, and other articles redirecting us to “superseding” articles that 
don’t actually have information.



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


Re: lilyjazz?

2017-05-03 Thread Pierre-Alex . Hébert
Hello,

I had this problem too: "\require" has to be replaced by "\include".

Regards,
Pierre




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilyjazz-tp200044p202876.html
Sent from the User mailing list archive at Nabble.com.

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


Re: lilyjazz?

2017-05-03 Thread Jacques Menu Muzhic
Hello,

With:

%%%

\version "2.19.55"

\require "lilyjazz"

\layout {
  \context {
\Score \jazzOn
  }
}

chordNames = \chordmode {   e1:maj7 ees:maj7 }
melody = \relative c'  {  e1  ees }

\score  {
  <<
\new ChordNames { \chordNames  }
\new Staff {  \melody }
\new TabStaff {\melody}
  >>
}

%%%

I get a message telling that \require is refused:

Starting lilypond 2.19.55 [Untitled (2)]...
Processing 
`/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly'
Parsing...
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:3:1
 : error: unknown 
escaped string: `\require'

\require "lilyjazz"
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:3:19
 : error: syntax error, 
unexpected STRING, expecting '.' or '=' or ','
\require "lilyjazz
"
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:7:12
 : error: unknown 
escaped string: `\jazzOn'
\Score
\jazzOn
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:8:3
 : error: syntax error, 
unexpected '}', expecting '='
}
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:12:20
 : error: wrong type for 
argument 2. Expecting music, found "c"
melody = \relative
c' { e1 ees }
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:12:21
 : error: syntax error, 
unexpected '''
melody = \relative c
' { e1 ees }
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:12:39
 : error: unrecognized 
string, not in text script or \lyricmode
melody = \relative c' {
e1 ees }
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:12:51
 : error: unrecognized 
string, not in text script or \lyricmode
melody = \relative c' { e1
ees }
/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly:20:2
 : error: Unfinished 
main input
}
Interpreting music...
Preprocessing graphical objects...
Interpreting music...
Preprocessing graphical objects...
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...
Layout output to 
`/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T//lilypond-MKFHkK'...
Converting to `document.pdf'...
Deleting `/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T//lilypond-MKFHkK'...
fatal error: failed files: 
"/var/folders/jc/xrpy67_x6_vcjfzpzds_9_6mgn/T/frescobaldi-a87j_7ge/tmpkrc2z032/document.ly"
Exited with return code 1.

JM

> Le 3 mai 2017 à 10:56, Pierre H  a écrit :
> 
> Hello Rob,
> 
> I had the same problem.
> I solved it by replacing the font name "LilyJAZZText" in (the bottom of the)
> file "jazzchord.ly" (or "jazzchord.ily") with the following:
> "lilyjazz-chord".
> Now, it works fine.
> 
> Regards,
> Pierre
> 
> 
> 
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/lilyjazz-tp200044p202866.html
> Sent from the User mailing list archive at Nabble.com.
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

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


Re: lilyjazz?

2017-05-03 Thread Pierre H
Hello Rob,

I had the same problem.
I solved it by replacing the font name "LilyJAZZText" in (the bottom of the)
file "jazzchord.ly" (or "jazzchord.ily") with the following:
"lilyjazz-chord".
Now, it works fine.

Regards,
Pierre



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilyjazz-tp200044p202866.html
Sent from the User mailing list archive at Nabble.com.

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


Re: lilyjazz?

2017-02-14 Thread Sharon Rosner
The lilyjazz package documentation:

https://github.com/lyp-packages/lilyjazz

Sharon



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilyjazz-tp200044p200109.html
Sent from the User mailing list archive at Nabble.com.

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


Re: lilyjazz?

2017-02-14 Thread Sharon Rosner
You need to turn on usage of the jazz font like this:

\version "2.18.2"
\require "lilyjazz"

\layout {
  \context {
\Score \jazzOn
  }
}

chordNames = \chordmode {   e1:maj7 ees:maj7 }
melody = \relative c'  {  e1  ees }

\score  {  
  <<
\new ChordNames { \chordNames  }
\new Staff {  \melody }
\new TabStaff {\melody}
  >>
}

Documentation for the lilyjazz package can be found here, together with a
couple of examples.

Sharon



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilyjazz-tp200044p200107.html
Sent from the User mailing list archive at Nabble.com.

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


Re: lilyjazz?

2017-02-12 Thread Jacques Menu Muzhic
There’s also this post from Sharon:

Hello,

You can find an archived version of Abraham's lilyjazz font here:

 https://github.com/OpenLilyPondFonts/lilyjazz 
<https://github.com/OpenLilyPondFonts/lilyjazz>

There's also a lyp package for easy installation and usage here:

 https://github.com/lyp-packages/lilyjazz 
<https://github.com/lyp-packages/lilyjazz>

best
Sharon

> Le 12 févr. 2017 à 23:18, Jacques Menu Muzhic  a écrit 
> :
> 
> Hello Rob,
> 
> This works fine for me.
> 
> JM
> 
> 
> \version "2.19.44"
> 
> \paper {
>   #(define fonts
>  (set-global-fonts
>   #:music "lilyjazz"
>   #:brace "lilyjazz"
>   #:roman "lilyjazz-text"
>   #:sans "lilyjazz-chord"
>   #:factor (/ staff-height pt 20)
>   ))
> }
> 
> chordNames = \chordmode {   c1:7 g:maj7 }
> melody = \relative c'  {  g1  ees }
> 
> \score  {  
>   <<
> \new ChordNames { \chordNames  }
> \new Staff {  \melody }
> \new TabStaff {\melody}
>   >>
> }
> 
> 
> 
> 
>> Le 12 févr. 2017 à 22:11, Rob Torop > <mailto:rob.to...@gmail.com>> a écrit :
>> 
>> I'm trying to use lilyjazz with 2.18.2 on os/x.  I installed it with lyp and 
>> it seems to have worked. But when I try an example, a maj7 is rendered 
>> strangely as shown in the the screen grab below.  The biggest problem is 
>> that it doesn't seem to like flats or sharps in  chord names (see the ">").  
>> But also, it is rending major chords with a superscript M, and minor with a 
>> subscript M.  I had expected a triangle for major and minus for minor. And I 
>> can't seem to explicitly force it, e.g. using majorSevenSymbol.
>> 
>> The source code is right below the image.  I've looked in the mail archive 
>> and tried many other things, but I can't get it.   I must be missing 
>> something very basic!
>> 
>> 
>> 
>> 
>> \version "2.18.2"
>> \require "lilyjazz"
>> 
>> chordNames = \chordmode {   e1:maj7 ees:maj7 }
>> melody = \relative c'  {  e1  ees }
>> 
>> \score  {  
>>   <<
>> \new ChordNames { \chordNames  }
>> \new Staff {  \melody }
>> \new TabStaff {\melody}
>>   >>
>> }
>> 
>> 
>> ___
>> lilypond-user mailing list
>> lilypond-user@gnu.org <mailto:lilypond-user@gnu.org>
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 

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


Re: lilyjazz?

2017-02-12 Thread Jacques Menu Muzhic
Hello Rob,

This works fine for me.

JM


\version "2.19.44"

\paper {
  #(define fonts
 (set-global-fonts
  #:music "lilyjazz"
      #:brace "lilyjazz"
  #:roman "lilyjazz-text"
  #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20)
  ))
}

chordNames = \chordmode {   c1:7 g:maj7 }
melody = \relative c'  {  g1  ees }

\score  {  
  <<
\new ChordNames { \chordNames  }
\new Staff {  \melody }
\new TabStaff {\melody}
  >>
}




> Le 12 févr. 2017 à 22:11, Rob Torop  a écrit :
> 
> I'm trying to use lilyjazz with 2.18.2 on os/x.  I installed it with lyp and 
> it seems to have worked. But when I try an example, a maj7 is rendered 
> strangely as shown in the the screen grab below.  The biggest problem is that 
> it doesn't seem to like flats or sharps in  chord names (see the ">").  But 
> also, it is rending major chords with a superscript M, and minor with a 
> subscript M.  I had expected a triangle for major and minus for minor. And I 
> can't seem to explicitly force it, e.g. using majorSevenSymbol.
> 
> The source code is right below the image.  I've looked in the mail archive 
> and tried many other things, but I can't get it.   I must be missing 
> something very basic!
> 
> 
> 
> 
> \version "2.18.2"
> \require "lilyjazz"
> 
> chordNames = \chordmode {   e1:maj7 ees:maj7 }
> melody = \relative c'  {  e1  ees }
> 
> \score  {  
>   <<
> \new ChordNames { \chordNames  }
> \new Staff {  \melody }
> \new TabStaff {\melody}
>   >>
> }
> 
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

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


lilyjazz?

2017-02-12 Thread Rob Torop
I'm trying to use lilyjazz with 2.18.2 on os/x.  I installed it with lyp
and it seems to have worked. But when I try an example, a maj7 is rendered
strangely as shown in the the screen grab below.  The biggest problem is
that it doesn't seem to like flats or sharps in  chord names (see the
">").  But also, it is rending major chords with a superscript M, and minor
with a subscript M.  I had expected a triangle for major and minus for
minor. And I can't seem to explicitly force it, e.g. using majorSevenSymbol.

The source code is right below the image.  I've looked in the mail archive
and tried many other things, but I can't get it.   I must be missing
something very basic!

[image: Screen Shot 2017-02-12 at 3.50.38 PM.png]


\version "2.18.2"
\require "lilyjazz"

chordNames = \chordmode {   e1:maj7 ees:maj7 }
melody = \relative c'  {  e1  ees }

\score  {
  <<
\new ChordNames { \chordNames  }
\new Staff {  \melody }
\new TabStaff {\melody}
  >>
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ font for markups

2016-07-08 Thread Menu Jacques
Hello Andrew,

That’s a good solution, thanks!

JM

> Le 8 juil. 2016 à 13:18, Andrew Bernard  a écrit :
> 
> Hello JM,
> 
> Why are you not using text spanners for your ritardando?
> 
> For example:
> 
> 
> \relative {
>  \override TextSpanner.font-name = "LilyJazz Text"
>  \override TextSpanner.bound-details.left.text = "rit."
>  b'1\startTextSpan
>  e,\stopTextSpan
> }
> 
> This is detailed in the NR Section 1.8.1.
> 
> To set the font globally for the text spanner just out the font name
> and size overrides and so on in the layout context section.
> 
> Andrew
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user


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


Re: LilyJAZZ font for markups

2016-07-08 Thread Andrew Bernard
Hello JM,

Why are you not using text spanners for your ritardando?

For example:


\relative {
  \override TextSpanner.font-name = "LilyJazz Text"
  \override TextSpanner.bound-details.left.text = "rit."
  b'1\startTextSpan
  e,\stopTextSpan
}

This is detailed in the NR Section 1.8.1.

To set the font globally for the text spanner just out the font name
and size overrides and so on in the layout context section.

Andrew

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


LilyJAZZ font for markups

2016-07-08 Thread Menu Jacques
Hello,

Is there a global setting I could use to have « RIT » in lilyJAZZ text without 
specifying the font each time with:

  \override #'(font-name . "LilyJazz Text »)

Thanks for the help!

JM

--





\version "2.19.44"
% automatically converted by musicxml2ly from Brothers & Sisters original.xml


\header {
  title = \markup{
\override #'(font-name . "LilyJazz Text")
"BROTHERS & SISTERS"
  }
  encodingdescription =  "MusicXML 2.0"
  source =  "Scanned sheet music"
  composer =  \markup{
\override #'(font-name . "LilyJazz Text")
"SCOTT D. STANTON"
  }
}


myDisplayBarNummber = {
  \once\override Score.BarNumber.break-visibility = ##(#f #t #t)
  \once\override Score.BarNumber.font-size = #1.5
  \once\override Score.BarNumber.stencil = #(make-stencil-boxer 0.1 0.4 
ly:text-interface::print)
}


% Exception music is chords with markups
chExceptionMusic = {
  1-\markup { \super {"-7(" {\small\raise #0.5 \flat} "5)"} }
  1-\markup { \super "7" }
  1-\markup { \super {"7(" {\small\raise #0.5 \sharp} "5)"} }
  1-\markup { \super {"7(sus4)"} }
  1-\markup { \super "6/9" }
  1-\markup { \super {"7(" {\small\raise #0.5 \flat} "9)"} }
  1-\markup { \super {"9(sus4)"} }
  1-\markup { \super "9" }
  1-\markup { \super "maj9" }
  1-\markup { \super "9+" }
  1-\markup { \super "9#11" }
  1-\markup { \super "11" }
  1-\markup { \super "13" }
  1-\markup { \super {"13(" {\small\raise #0.5 \sharp} 
"11)"} }
  1-\markup { \super "6(add9)" }
}

% Convert music to list and prepend to existing exceptions.
chExceptions = #( append
  ( sequential-music-to-chord-exceptions chExceptionMusic #t)
  ignatzekExceptions)

BassFonts = {
  \override Voice.TextScript.font-name = #"LilyJazz Text"
  \override Score.MetronomeMark.font-name = #"LilyJazz Text"
  %  \override Voice.TextSpanner.font-name = #"LilyJazz Text"
}

BassFingerings = {
  \override Fingering.color = #magenta
  \override Fingering.font-size = -1.5
}


Bass = \relative c {
  \compressFullBarRests

  \BassFonts
  \BassFingerings

  \clef "bass" \key f \major \numericTimeSignature\time 4/4 | % 1

  \tempo "SOLO SECTION - PLAY 3X'S"

  \repeat volta 2 {
| % 37
\key bes \major | % 37
bes'4 c,4 cis4 d4 | % 38
es4 g,4 gis4 a4 | % 39
bes4 d4 f4 g4 |
\barNumberCheck #40
bes4 as4 g4 f4 \break | % 41
R1 -\markup{
  \override #'(font-name . "LilyJazz Text")
  "RIT.."
}
r4 f2. \fermata -> \ff
\bar "|."
  }
}


Chords =  \chordmode {
  \set minorChordModifier = \markup { "-" }
  \set majorSevenSymbol = \markup { "maj7" }
  \set chordNameExceptions = #chExceptions

  \override ChordNames.ChordName.font-name = #"LilyJazz Text"

  \repeat volta 2 {
| % 1
c4:9sus4 s4 s4 s4 | % 2
s4 s4 s4 s4 | % 3
s4. s8 s4 s4 | % 4
s2 s2
\bar "||"
f4:6 s4 fis4:dim7 s4 | % 6
g4:m9 s4 gis4:dim7 s4 | % 7
  }
  \bar "|."
}


% The score definition
\score {
  <<
\context ChordNames = "Chords" { \Chords}

\new Staff
<<
  \context Staff <<
\context Voice = "Bass" {  \Bass }
  >>
>>
  >>

  \layout {  }
}







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


lilyjazz

2016-07-06 Thread Menu Jacques
Hello folks,

I’ve seen several posts and web pages regarding lilyjazz, but there seems to be 
several versions with different file names and contents.

Is there kind of a latest version?

Thanks for your help!

JM



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


Re: lilyjazz fonts on Mac / Win

2016-04-11 Thread Christoph Friedrich
Good morning

hm, now it works. Inspired by Daniel Fütterers post about font problems, i 
manually moved all fonts (including lilyjazz-text.otf and lilyjazz-chord.otf) 
from /Users/… / Library/Fonts to /Library/Fonts. In the fontbook.app 
preferences, the standard location for font installation was set to „computer“ 
before)
Thanks to all who helped
Christoph


> Am 09.04.2016 um 01:03 schrieb Christoph Friedrich 
> :
> 
> Hello Abraham and Stan
> 
> thanks for your replies. I cleared the font cache as it was proposed by 
> Abraham (howto 
> <http://osxdaily.com/2015/01/08/clear-font-caches-databases-mac-os-x/>), and 
> i also made use of the options that are given in the font book.app (looking 
> for duplicate fonts, removing non-standard system fonts etc)
> It did not help yet. I also had a look to the Finale forum as it was 
> proposed, and it seems there are really some major font problems in the 
> current mac OS. Then I noticed that i have about 240 fonts in my font library 
> (where do they all come from?) and there were another 200 moved automatically 
> to the folder called „fonts_removed“ by the fontbook.app. So for sure i will 
> have to check if i really need all these fonts (I already know don’t) and 
> reduce their number. 
> 
> Stan pointed out that the lilyJAZZfonts in his system do have a slightly 
> different name. As far as i remember, there was a suggestion here once to 
> rename them from LilyJAZZ* ( version prior to lilypond 2.18.2, by Thorsten 
> Hämmerle) to lilyjazz* (2.18.2 and later, by Abraham). I remember the older 
> version was also installed in my computer once. So this might be a hint where 
> the problem might come from.
> If i gonna find a solution, i’ll post it here. Meanwhile i’ll switch to 
> another computer..
> 
> Thanks again
> Christoph
> 
> 
>> Am 07.04.2016 um 13:19 schrieb Stanton Sanderson > <mailto:stans...@gmail.com>>:
>> 
>> On my Mac with the same OS X (10.11.4) and version of Lilypond, Christoph’s 
>> code produces the expected results.
>> 
>> One difference in installation is is that the .chord and .text font files 
>> are installed in the Lilypond app, in the same font directories mentioned. 
>> Mine are named LilyJAZZChord.otf and LilyJAZZText.otf, however. If I recall, 
>> that was the way they were named when they were first introduced. 
>> 
>> Stan
>> All the lilyjazz-11.otf, etc. files are also in that directory. 
>>> On Apr 6, 2016, at 11:08 PM, Abraham Lee >> <mailto:tisimst.lilyp...@gmail.com>> wrote:
>>> 
>>> Christoph,
>>> 
>>> I don't own a Mac, nor do I have access to one, so I'm not the most 
>>> qualified to answer this question. What you've described is exactly how you 
>>> should do it. However, I have noticed that users of Finale have had similar 
>>> issues on a Mac, so I think it's not specific to LilyPond. The issues could 
>>> be totally unrelated, but you never know. 
>>> 
>>> What they seem to do that alleviates the problem is clearing out the font 
>>> cache (sorry, I'm not sure how to do that). Font Book may have some tools 
>>> to help you out, too. I'd go to the Finale forum (forum.makemusic.com 
>>> <http://forum.makemusic.com/>) and look through the topics on the Macintosh 
>>> user subforum. There have been plenty lately on this topic. 
>>> 
>>> Best,
>>> Abraham
>>> 
>>> On Wednesday, April 6, 2016, Christoph Friedrich 
>>> mailto:m...@christoph-friedrich.org>> wrote:
>>> Hello
>>> 
>>> i am still trying to find out why the lilyjazz fonts do not work properly 
>>> on my computer (mac os x) and i hope to get some advice here…
>>> The fonts "lilyjazz-text" and "lilyjazz-chords“ were installed in the 
>>> system font location, the ones named lilyjazz-11.otf etc were copied to 
>>> 
>>> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/otf
>>> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/svg
>>> 
>>> It says everything ok, but on the mac text and chords appear in a standard 
>>> system font.
>>> 
>>> I did the same on a windows system, and the result seems to be as expected. 
>>> (please see examples below)
>>> Could this be a bug?
>>> 
>>> Thanks for any advice.
>>> Christoph
>>> 
>>> example code
>>> -
>>> \version "2.19.39"
>>> \include "lilyjazz.ily"
>>> 
>>> \header{

Re: lilyjazz fonts on Mac / Win

2016-04-08 Thread Christoph Friedrich
Hello Abraham and Stan

thanks for your replies. I cleared the font cache as it was proposed by Abraham 
(howto <http://osxdaily.com/2015/01/08/clear-font-caches-databases-mac-os-x/>), 
and i also made use of the options that are given in the font book.app (looking 
for duplicate fonts, removing non-standard system fonts etc)
It did not help yet. I also had a look to the Finale forum as it was proposed, 
and it seems there are really some major font problems in the current mac OS. 
Then I noticed that i have about 240 fonts in my font library (where do they 
all come from?) and there were another 200 moved automatically to the folder 
called „fonts_removed“ by the fontbook.app. So for sure i will have to check if 
i really need all these fonts (I already know don’t) and reduce their number. 

Stan pointed out that the lilyJAZZfonts in his system do have a slightly 
different name. As far as i remember, there was a suggestion here once to 
rename them from LilyJAZZ* ( version prior to lilypond 2.18.2, by Thorsten 
Hämmerle) to lilyjazz* (2.18.2 and later, by Abraham). I remember the older 
version was also installed in my computer once. So this might be a hint where 
the problem might come from.
If i gonna find a solution, i’ll post it here. Meanwhile i’ll switch to another 
computer..

Thanks again
Christoph


> Am 07.04.2016 um 13:19 schrieb Stanton Sanderson :
> 
> On my Mac with the same OS X (10.11.4) and version of Lilypond, Christoph’s 
> code produces the expected results.
> 
> One difference in installation is is that the .chord and .text font files are 
> installed in the Lilypond app, in the same font directories mentioned. Mine 
> are named LilyJAZZChord.otf and LilyJAZZText.otf, however. If I recall, that 
> was the way they were named when they were first introduced. 
> 
> Stan
> All the lilyjazz-11.otf, etc. files are also in that directory. 
>> On Apr 6, 2016, at 11:08 PM, Abraham Lee > <mailto:tisimst.lilyp...@gmail.com>> wrote:
>> 
>> Christoph,
>> 
>> I don't own a Mac, nor do I have access to one, so I'm not the most 
>> qualified to answer this question. What you've described is exactly how you 
>> should do it. However, I have noticed that users of Finale have had similar 
>> issues on a Mac, so I think it's not specific to LilyPond. The issues could 
>> be totally unrelated, but you never know. 
>> 
>> What they seem to do that alleviates the problem is clearing out the font 
>> cache (sorry, I'm not sure how to do that). Font Book may have some tools to 
>> help you out, too. I'd go to the Finale forum (forum.makemusic.com 
>> <http://forum.makemusic.com/>) and look through the topics on the Macintosh 
>> user subforum. There have been plenty lately on this topic. 
>> 
>> Best,
>> Abraham
>> 
>> On Wednesday, April 6, 2016, Christoph Friedrich 
>> mailto:m...@christoph-friedrich.org>> wrote:
>> Hello
>> 
>> i am still trying to find out why the lilyjazz fonts do not work properly on 
>> my computer (mac os x) and i hope to get some advice here…
>> The fonts "lilyjazz-text" and "lilyjazz-chords“ were installed in the system 
>> font location, the ones named lilyjazz-11.otf etc were copied to 
>> 
>> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/otf
>> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/svg
>> 
>> It says everything ok, but on the mac text and chords appear in a standard 
>> system font.
>> 
>> I did the same on a windows system, and the result seems to be as expected. 
>> (please see examples below)
>> Could this be a bug?
>> 
>> Thanks for any advice.
>> Christoph
>> 
>> example code
>> -
>> \version "2.19.39"
>> \include "lilyjazz.ily"
>> 
>> \header{
>> title = "Test"
>> composer = "Mac OSX 10.11.4"
>> piece = "Latin"
>> }
>> 
>> melody = \new Staff {
>>   \set Staff.instrumentName = #"Piano"
>> \time 6/8
>> \tempo  8 = 120
>> \clef treble
>> \key ees \major
>> \relative  {
>>   c8 d e f g a b c d e f g d e f g a b
>>}
>> }
>> 
>> harmonies = \chordmode { \set majorSevenSymbol = \markup { maj7 }
>> ees1:7 fis:maj7
>>  }
>> 
>> \score{
>> <<
>> \new ChordNames {\set chordChanges = ##t \harmonies}
>> \melody
>> >>
>> }
>> 
>> 
>> 
>> ___
>> lilypond-user mailing list
>> lilypond-user@gnu.org <mailto:lilypond-user@gnu.org>
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

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


Re: lilyjazz fonts on Mac / Win

2016-04-07 Thread Stanton Sanderson
On my Mac with the same OS X (10.11.4) and version of Lilypond, Christoph’s 
code produces the expected results.

One difference in installation is is that the .chord and .text font files are 
installed in the Lilypond app, in the same font directories mentioned. Mine are 
named LilyJAZZChord.otf and LilyJAZZText.otf, however. If I recall, that was 
the way they were named when they were first introduced. 

Stan
All the lilyjazz-11.otf, etc. files are also in that directory. 
> On Apr 6, 2016, at 11:08 PM, Abraham Lee  wrote:
> 
> Christoph,
> 
> I don't own a Mac, nor do I have access to one, so I'm not the most qualified 
> to answer this question. What you've described is exactly how you should do 
> it. However, I have noticed that users of Finale have had similar issues on a 
> Mac, so I think it's not specific to LilyPond. The issues could be totally 
> unrelated, but you never know. 
> 
> What they seem to do that alleviates the problem is clearing out the font 
> cache (sorry, I'm not sure how to do that). Font Book may have some tools to 
> help you out, too. I'd go to the Finale forum (forum.makemusic.com 
> <http://forum.makemusic.com/>) and look through the topics on the Macintosh 
> user subforum. There have been plenty lately on this topic. 
> 
> Best,
> Abraham
> 
> On Wednesday, April 6, 2016, Christoph Friedrich 
> mailto:m...@christoph-friedrich.org>> wrote:
> Hello
> 
> i am still trying to find out why the lilyjazz fonts do not work properly on 
> my computer (mac os x) and i hope to get some advice here…
> The fonts "lilyjazz-text" and "lilyjazz-chords“ were installed in the system 
> font location, the ones named lilyjazz-11.otf etc were copied to 
> 
> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/otf
> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/svg
> 
> It says everything ok, but on the mac text and chords appear in a standard 
> system font.
> 
> I did the same on a windows system, and the result seems to be as expected. 
> (please see examples below)
> Could this be a bug?
> 
> Thanks for any advice.
> Christoph
> 
> example code
> -
> \version "2.19.39"
> \include "lilyjazz.ily"
> 
> \header{
> title = "Test"
> composer = "Mac OSX 10.11.4"
> piece = "Latin"
> }
> 
> melody = \new Staff {
>   \set Staff.instrumentName = #"Piano"
> \time 6/8
> \tempo  8 = 120
> \clef treble
> \key ees \major
> \relative  {
>   c8 d e f g a b c d e f g d e f g a b
>}
> }
> 
> harmonies = \chordmode { \set majorSevenSymbol = \markup { maj7 }
> ees1:7 fis:maj7
>  }
> 
> \score{
> <<
> \new ChordNames {\set chordChanges = ##t \harmonies}
> \melody
> >>
> }
> 
> 
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

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


Re: lilyjazz fonts on Mac / Win

2016-04-06 Thread Abraham Lee
Christoph,

I don't own a Mac, nor do I have access to one, so I'm not the most
qualified to answer this question. What you've described is exactly how you
should do it. However, I have noticed that users of Finale have had similar
issues on a Mac, so I think it's not specific to LilyPond. The issues could
be totally unrelated, but you never know.

What they seem to do that alleviates the problem is clearing out the font
cache (sorry, I'm not sure how to do that). Font Book may have some tools
to help you out, too. I'd go to the Finale forum (forum.makemusic.com) and
look through the topics on the Macintosh user subforum. There have been
plenty lately on this topic.

Best,
Abraham

On Wednesday, April 6, 2016, Christoph Friedrich <
m...@christoph-friedrich.org> wrote:

> Hello
>
> i am still trying to find out why the lilyjazz fonts do not work properly
> on my computer (mac os x) and i hope to get some advice here…
> The fonts "lilyjazz-text" and "lilyjazz-chords“ were installed in the
> system font location, the ones named lilyjazz-11.otf etc were copied to
>
>
> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/otf
>
> /Applications/LilyPond.app/Contents/Resources/share/lilypond/current/fonts/svg
>
> It says everything ok, but on the mac text and chords appear in a standard
> system font.
>
> I did the same on a windows system, and the result seems to be as
> expected. (please see examples below)
> Could this be a bug?
>
> Thanks for any advice.
> Christoph
>
> example code
> -
> \version "2.19.39"
> \include "lilyjazz.ily"
>
> \header{
> title = "Test"
> composer = "Mac OSX 10.11.4"
> piece = "Latin"
> }
>
> melody = \new Staff {
>   \set Staff.instrumentName = #"Piano"
> \time 6/8
> \tempo  8 = 120
> \clef treble
> \key ees \major
> \relative  {
>   c8 d e f g a b c d e f g d e f g a b
>}
> }
>
> harmonies = \chordmode { \set majorSevenSymbol = \markup { maj7 }
> ees1:7 fis:maj7
>  }
>
> \score{
> <<
> \new ChordNames {\set chordChanges = ##t \harmonies}
> \melody
> >>
> }
>
>
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lilyjazz

2016-03-27 Thread Christoph Friedrich


there was a discussion once about renaming ily and fonts
https://lists.gnu.org/archive/html/lilypond-user/2015-03/msg00999.html 
<https://lists.gnu.org/archive/html/lilypond-user/2015-03/msg00999.html>

infact there are two versions - LilyJAZZ (afaik by Thorsten Hämmerle) and 
lilijazz.ily (afaik by Abraham Lee)
which use fonts named differently

If your version is working maybe it is better not to change. 



> Am 27.03.2016 um 09:30 schrieb Blöchl Bernhard 
> mailto:b_120902342...@telecolumbus.net>>:
> 
> I actually tried  the example code but it does not compile.
> 1. My ily-file is LilyJAZZ, not lilyjazz - is there a newer version available?
> 2. I get a Warning:
> »(gs -q -dSAFER -dDEVICEWIDTHPOINTS=595.28 -dDEVICEHEIGHTPOINTS=841.89 
> -dCompatibilityLevel=1.4 -dNOPAUSE -dBATCH -r1200 -sDEVICE=pdfwrite 
> -sOutputFile=jazztest.pdf -c.setpdfwrite -f/tmp/lilypond-INH2ac)« gescheitert 
> (256)
> and no pdf.
> 

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


Re: lilyjazz

2016-03-27 Thread Blöchl Bernhard

I actually tried  the example code but it does not compile.
1. My ily-file is LilyJAZZ, not lilyjazz - is there a newer version 
available?

2. I get a Warning:
 »(gs -q -dSAFER -dDEVICEWIDTHPOINTS=595.28 -dDEVICEHEIGHTPOINTS=841.89 
-dCompatibilityLevel=1.4 -dNOPAUSE -dBATCH -r1200 -sDEVICE=pdfwrite 
-sOutputFile=jazztest.pdf -c.setpdfwrite -f/tmp/lilypond-INH2ac)« 
gescheitert (256)

and no pdf.

Am 26.03.2016 15:14, schrieb Christoph Friedrich:

Good Morning

i am (like some others) also trying use lilyjazz with LP 2.19.32 and
Frescobaldi on a Mac.  It seems to run and i am getting a result, but
for some reasons the title /composer /piece and also the chord letters
appear in a „normal“ font, not in lilyjazz-text. Did anybody have
similar problem and could solve it?
Thank you very much


this is what i wrote:

%---
\version "2.19.36"
\include "lilyjazz.ily"

%\paper { #(define fonts (set-global-fonts #:music "lilyjazz" #:brace
"lilyjazz" #:roman "lilyjazz-text" #:sans "lilyjazz-chord" #:factor (/
staff-height pt 20) )) }

#(set-default-paper-size "a4" 'portrait)

\header {
title = "lilyjazz test"
composer = "Com Poser"
piece = "Latin"
}

staffmelody = \new Staff {
\set Staff.midiInstrument = #"acoustic grand"
\set Staff.instrumentName = #""
\time 4/4
\tempo "" 2 = 90
\clef treble
\key ees \major
\relative c' {
r1 r r r  \repeat volta 2  {
c4 d e f g

}}}


harmonies = \chordmode {  \set majorSevenSymbol = \markup { maj7 }

ees1:7 s s s  \break
ees1:7 s s s  \break
}

\score {

<<
\new ChordNames { \set chordChanges = ##t \harmonies}
\staffmelody
>>

\midi {
}

  \layout {
  }
}

\paper {
}



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


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


Re: lilyjazz

2016-03-26 Thread tisimst
Christoph,

On Sat, Mar 26, 2016 at 9:25 AM, Christoph Friedrich [via Lilypond] <
ml-node+s1069038n188981...@n5.nabble.com> wrote:

> I just noticed my example is far too long, i am sorry.
> this is a small example of the graphical result
>

If the lilyjazz-text and -chords fonts are in the LilyPond font directory,
these need to be moved _out_ to the normal system font directory. That's
where Pango knows where to look for them.

I'm not sure how the program knows where the bundled text fonts are (in the
LilyPond font folder), but it seems to have trouble with any other text
font.

HTH,
Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilyjazz-tp188980p188989.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


lilyjazz

2016-03-26 Thread Christoph Friedrich
Good Morning

i am (like some others) also trying use lilyjazz with LP 2.19.32 and 
Frescobaldi on a Mac.  It seems to run and i am getting a result, but for some 
reasons the title /composer /piece and also the chord letters appear in a 
„normal“ font, not in lilyjazz-text. Did anybody have similar problem and could 
solve it?
Thank you very much 


this is what i wrote:

%---
\version "2.19.36"
\include "lilyjazz.ily"

%\paper { #(define fonts (set-global-fonts #:music "lilyjazz" #:brace 
"lilyjazz" #:roman "lilyjazz-text" #:sans "lilyjazz-chord" #:factor (/ 
staff-height pt 20) )) }

#(set-default-paper-size "a4" 'portrait)

\header {
title = "lilyjazz test"
composer = "Com Poser"
piece = "Latin"
}

staffmelody = \new Staff {
\set Staff.midiInstrument = #"acoustic grand"
\set Staff.instrumentName = #""
\time 4/4
\tempo "" 2 = 90
\clef treble
\key ees \major
\relative c' {
r1 r r r  \repeat volta 2  {
c4 d e f g

}}}


harmonies = \chordmode {  \set majorSevenSymbol = \markup { maj7 }

ees1:7 s s s  \break
ees1:7 s s s  \break
}

\score {

<<
\new ChordNames { \set chordChanges = ##t \harmonies}
\staffmelody
>>

\midi {
}

  \layout {
  }
}

\paper {
}



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


Re: lilyjazz

2016-03-26 Thread Christoph Friedrich
I just noticed my example is far too long, i am sorry.
this is a small example of the graphical result.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Where can I find lilyJazz (fonts.openlilylib.org is gone)

2016-02-14 Thread tisimst
No worries, Jacques. I sent him the files already.

Best,
Abraham

On Sunday, February 14, 2016, Jacques Menu-3 [via Lilypond] <
ml-node+s1069038n187211...@n5.nabble.com> wrote:

> Hello Ernie,
>
> I copied the .zip archive recenlty to my machine, send it to you right now.
>
> JM
>
> Le 7 févr. 2016 à 23:54, tisimst <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=187211&i=0>> a écrit :
>
> Ernie,
>
> I've been in the process of moving everything to a new website. I
> apologize to everyone who has tried to access it lately and haven't been
> able to. I'll send you a private message later with the files. More details
> soon. I should have the site ready for public access by the end of this
> week.
>
> Best,
> Abraham
>
> On Sunday, February 7, 2016, Ernie Braganza [via Lilypond] < href="x-msg://13/user/SendEmail.jtp?type=node&node=186999&i=0"
> target="_top" rel="nofollow" link="external" class="">[hidden email]> wrote:
>
>> I wanted to try lilyJazz, but I am unable to find the font. The
>> fonts.openlilylib.org site is not accessible (404 error). Is there an
>> alternative site?
>>
>> Thanks for your help.
>>
>> Ernie
>>
>> ___
>> lilypond-user mailing list
>> [hidden email] <http://user/SendEmail.jtp?type=node&node=186994&i=0>
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>
>>
>> --
>> If you reply to this email, your message will be added to the discussion
>> below:
>>
>> http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994.html
>> To start a new topic under User, email > href="javascript:_e(%7B%7D,'cvml','ml-node%[hidden email]
>> <http:///user/SendEmail.jtp?type=node&node=187211&i=1>');"
>> target="_blank">ml-node+s1069038n3h2@...
>> To unsubscribe from Lilypond, click here.
>> NAML
>> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>>
>
> --
> View this message in context: Re: Where can I find lilyJazz
> (fonts.openlilylib.org is gone)
> <http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994p186999.html>
> Sent from the User mailing list archive
> <http://lilypond.1069038.n5.nabble.com/User-f3.html> at Nabble.com
> <http://nabble.com>.
> ___
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=187211&i=2>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
>
> ___
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=187211&i=3>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
>
> http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994p187211.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> 
> To unsubscribe from Lilypond, click here
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>
> .
> NAML
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994p187214.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Where can I find lilyJazz (fonts.openlilylib.org is gone)

2016-02-14 Thread Jacques Menu Muzhic
Hello Ernie,

I copied the .zip archive recenlty to my machine, send it to you right now.

JM

> Le 7 févr. 2016 à 23:54, tisimst  a écrit :
> 
> Ernie,
> 
> I've been in the process of moving everything to a new website. I apologize 
> to everyone who has tried to access it lately and haven't been able to. I'll 
> send you a private message later with the files. More details soon. I should 
> have the site ready for public access by the end of this week.
> 
> Best,
> Abraham
> 
> On Sunday, February 7, 2016, Ernie Braganza [via Lilypond] <[hidden email] 
> > wrote:
> I wanted to try lilyJazz, but I am unable to find the font. The 
> fonts.openlilylib.org <http://fonts.openlilylib.org/> site is not accessible 
> (404 error). Is there an alternative site?
> 
> Thanks for your help.
> 
> Ernie
> 
> ___ 
> lilypond-user mailing list 
> [hidden email] <http://user/SendEmail.jtp?type=node&node=186994&i=0> 
> https://lists.gnu.org/mailman/listinfo/lilypond-user 
> <https://lists.gnu.org/mailman/listinfo/lilypond-user>
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994.html
>  
> <http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994.html>
> To start a new topic under User, email  href="javascript:_e(%7B%7D,'cvml','ml-node%2bs1069038n...@n5.nabble.com');"
>  target="_blank">ml-node+s1069038n3h2@... 
> To unsubscribe from Lilypond, click here 
> .
> NAML 
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
> View this message in context: Re: Where can I find lilyJazz 
> (fonts.openlilylib.org is gone) 
> <http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994p186999.html>
> Sent from the User mailing list archive 
> <http://lilypond.1069038.n5.nabble.com/User-f3.html> at Nabble.com.
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

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


Re: Where can I find lilyJazz (fonts.openlilylib.org is gone)

2016-02-07 Thread tisimst
Ernie,

I've been in the process of moving everything to a new website. I apologize
to everyone who has tried to access it lately and haven't been able
to. I'll send you a private message later with the files. More details
soon. I should have the site ready for public access by the end of this
week.

Best,
Abraham

On Sunday, February 7, 2016, Ernie Braganza [via Lilypond] <
ml-node+s1069038n186994...@n5.nabble.com> wrote:

> I wanted to try lilyJazz, but I am unable to find the font. The
> fonts.openlilylib.org site is not accessible (404 error). Is there an
> alternative site?
>
> Thanks for your help.
>
> Ernie
>
> ___
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=186994&i=0>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
>
> http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> 
> To unsubscribe from Lilypond, click here
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>
> .
> NAML
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Where-can-I-find-lilyJazz-fonts-openlilylib-org-is-gone-tp186994p186999.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Where can I find lilyJazz (fonts.openlilylib.org is gone)

2016-02-07 Thread Ernie Braganza
I wanted to try lilyJazz, but I am unable to find the font. The
fonts.openlilylib.org site is not accessible (404 error). Is there an
alternative site?

Thanks for your help.

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


Re: LilyJAZZ

2015-08-24 Thread Blöchl Bernhard
It might be helpful to have lilyjazz examples old/new side by side with 
explicite evidence to the unbeautiful elements?


I just got the "new" version happily to work. I cannot make such 
examples as I do not have the old/new version working simultaneosly. I 
fear my lilypond skills are not sufficiant to handle both versions side 
by side.


Regards


Am 23.08.2015 23:42, schrieb tisimst:

Tim,

Would you mind expounding a little further on what you feel has
degraded since the original was published? I will tell you what I've
done, but I would appreciate hearing your thoughts, especially if
many others feel similarly.

In bringing the original LilyJAZZ font up to speed, I don't
recall editing ANY of the original glyphs in the font. I did _add_
some to make it more complete, but that's it. 

The other thing that might be causing visual is the stylesheet I've
created to go along with the font family. If that's the problem,
please help me out by offering some suggestions. I've created
settings that I thought were reasonable and compliment the font, but
that doesn't mean they have to stay that way. I guess the nice thing
is that you can adapt it to whatever styles _you_ like.

Please help me know, if you would. Thanks!!

- Abraham

On Sunday, August 23, 2015, Tim McNamara [via Lilypond] <[hidden
email] [7]> wrote:


On Aug 23, 2015, at 1:37 PM, Tim McNamara <[hidden email] [1]>

wrote:




On Aug 23, 2015, at 6:56 AM, BB <[hidden email] [2]> wrote:





Does anybody sucessful use LilyJAZZ?


Yes, I have been using it for over a year with excellent results,

although there are some quirks.  For example, it kills bar
numbering.  It also interferes with improvisationOn and I have to
turn off LilyJazz to be able to use that. Also, looking at the web
page that was referenced in other threads, it appears that the old
LilyJAZZ font has been completely replaced (looking at the example
lead sheet).  To my eyes the old font was much better and I won’t
be updating to the new version.  The new version looks awkward and
doesn’t visually flow very well.  YMMV.
___
lilypond-user mailing list
[hidden email] [3]
https://lists.gnu.org/mailman/listinfo/lilypond-user [4]

-

If you reply to this email, your message will be added to the
discussion below:
http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p180026.html
[5]
To start a new topic under User, email 
href="javascript:_e(%7B%7D,'cvml','ml-node%2bs1069038n...@n5.nabble.com');"

target="_blank">ml-node+s1069038n3h2@...
To unsubscribe from Lilypond, click here.
NAML [6]


-
 View this message in context: Re: LilyJAZZ [8]
 Sent from the User mailing list archive [9] at Nabble.com.


Links:
--
[1] http:///user/SendEmail.jtp?type=node&node=180026&i=0
[2] http:///user/SendEmail.jtp?type=node&node=180026&i=1
[3] http:///user/SendEmail.jtp?type=node&node=180026&i=2
[4] https://lists.gnu.org/mailman/listinfo/lilypond-user
[5] http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p180026.html
[6]
http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml
[7]
http://webmailer.telecolumbus.net/user/SendEmail.jtp?type=node&node=180036&i=0
[8] http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p180036.html
[9] http://lilypond.1069038.n5.nabble.com/User-f3.html

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


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


Re: LilyJAZZ

2015-08-23 Thread tisimst
Tim,

Would you mind expounding a little further on what you feel has degraded
since the original was published? I will tell you what I've done, but
I would appreciate hearing your thoughts, especially if many others feel
similarly.

In bringing the original LilyJAZZ font up to speed, I don't
recall editing ANY of the original glyphs in the font. I did _add_ some to
make it more complete, but that's it.

The other thing that might be causing visual is the stylesheet I've created
to go along with the font family. If that's the problem, please help me
out by offering some suggestions. I've created settings that I thought were
reasonable and compliment the font, but that doesn't mean they have to stay
that way. I guess the nice thing is that you can adapt it to whatever
styles _you_ like.

Please help me know, if you would. Thanks!!

- Abraham

On Sunday, August 23, 2015, Tim McNamara [via Lilypond] <
ml-node+s1069038n180026...@n5.nabble.com> wrote:

>
> > On Aug 23, 2015, at 1:37 PM, Tim McNamara <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=180026&i=0>> wrote:
> >
> >
> >> On Aug 23, 2015, at 6:56 AM, BB <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=180026&i=1>> wrote:
> >
> > 
> >
> >> Does anybody sucessful use LilyJAZZ?
> >
> > Yes, I have been using it for over a year with excellent results,
> although there are some quirks.  For example, it kills bar numbering.  It
> also interferes with \improvisationOn and I have to turn off LilyJazz to be
> able to use that.
>
> Also, looking at the web page that was referenced in other threads, it
> appears that the old LilyJAZZ font has been completely replaced (looking at
> the example lead sheet).  To my eyes the old font was much better and I
> won’t be updating to the new version.  The new version looks awkward and
> doesn’t visually flow very well.  YMMV.
> ___
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=180026&i=2>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p180026.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> 
> To unsubscribe from Lilypond, click here
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>
> .
> NAML
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p180036.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ

2015-08-23 Thread Tim McNamara

> On Aug 23, 2015, at 1:37 PM, Tim McNamara  wrote:
> 
> 
>> On Aug 23, 2015, at 6:56 AM, BB  wrote:
> 
> 
> 
>> Does anybody sucessful use LilyJAZZ?
> 
> Yes, I have been using it for over a year with excellent results, although 
> there are some quirks.  For example, it kills bar numbering.  It also 
> interferes with \improvisationOn and I have to turn off LilyJazz to be able 
> to use that.

Also, looking at the web page that was referenced in other threads, it appears 
that the old LilyJAZZ font has been completely replaced (looking at the example 
lead sheet).  To my eyes the old font was much better and I won’t be updating 
to the new version.  The new version looks awkward and doesn’t visually flow 
very well.  YMMV.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ

2015-08-23 Thread Blöchl Bernhard

Thank you for your help! It works now!

I forgot to copy the *.otf fonts. (I only copied *.svg and *.woff 
fonts.)


Thank you for explaining "lilyjazz.ily" and the \paper block - it was 
not quite clear for me before!


Thanks for help again,

Regards


Am 23.08.2015 21:56, schrieb Malte Meyn:

Am 23.08.2015 um 21:39 schrieb Blöchl Bernhard:
Forgot to add \include "lilyjazz.ily". And still »lilyjazz-11« cannot 
be

found as well.
Tried to copy the files "lilyjazz-11" into the directory of the 
lilypond

source - does not help!



The following should work:

(1) put lilyjazz*.otf into
/usr/local/lilypond/usr/share/lilypond/current/fonts/otf/ (You’ll need
the otf fonts for PDF output. svg and woff fonts are for svg output
and [???])
(2) put yourjazzexample.ly into ~/yourmusic/
(3a) put lilyjazz.ily into ~/yourmusic/
(3b) \include "lilyjazz.ily" in yourjazzexample.ly

Because you use 2.19.25 (and that’s > 2.19.11) you don’t have to
change fonts.scm or other files—it’s builtin now :)

Instead of (3a) and (3b) you can write the \paper block you posted in
yourjazzexample.ly—you don’t need both. Have a look at lilyjazz.ily:
you’ll see that it has the same \paper block and some additional
layout tweaks and commands.

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


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


Re: LilyJAZZ

2015-08-23 Thread Malte Meyn



Am 23.08.2015 um 21:39 schrieb Blöchl Bernhard:

Forgot to add \include "lilyjazz.ily". And still »lilyjazz-11« cannot be
found as well.
Tried to copy the files "lilyjazz-11" into the directory of the lilypond
source - does not help!



The following should work:

(1) put lilyjazz*.otf into 
/usr/local/lilypond/usr/share/lilypond/current/fonts/otf/ (You’ll need 
the otf fonts for PDF output. svg and woff fonts are for svg output and 
[???])

(2) put yourjazzexample.ly into ~/yourmusic/
(3a) put lilyjazz.ily into ~/yourmusic/
(3b) \include "lilyjazz.ily" in yourjazzexample.ly

Because you use 2.19.25 (and that’s > 2.19.11) you don’t have to change 
fonts.scm or other files—it’s builtin now :)


Instead of (3a) and (3b) you can write the \paper block you posted in 
yourjazzexample.ly—you don’t need both. Have a look at lilyjazz.ily: 
you’ll see that it has the same \paper block and some additional layout 
tweaks and commands.


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


Re: LilyJAZZ

2015-08-23 Thread Blöchl Bernhard
Forgot to add \include "lilyjazz.ily". And still »lilyjazz-11« cannot be 
found as well.
Tried to copy the files "lilyjazz-11" into the directory of the lilypond 
source - does not help!


%
\version "2.19.25"

\include "lilyjazz.ily"

% To use the font globally,
% put the following (minimal) code
% at the top of your .ly file:

\paper {
  #(define fonts (set-global-fonts
  #:music "lilyjazz" #:brace "lilyjazz"
  #:roman "lilyjazz-text" #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20) ))
}

\score {
  \new Staff {
a b c d
%~~~


Am 23.08.2015 21:13, schrieb Blöchl Bernhard:

Thank you for your advices. I updated to version 2.19.25. Then just
copied the downloaded lilyjazz font files *.woff and *.svg to the
directory lilypond/usr/share/lilypond/current/fonts/svg and checked if
they are really there.

Then I tried with a simple sample code

\version "2.19.25"

% To use the font globally, put the following (minimal) code
% at the top of your .ly file:

\paper {
  #(define fonts (set-global-fonts
  #:music "lilyjazz" #:brace "lilyjazz"
  #:roman "lilyjazz-text" #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20) ))
}

\score {
  \new Staff {
a b c d
  }
}

I end up with a message that font »lilyjazz-11« was not found.

Concerning to
http://fonts.openlilylib.org/docs.html#font-install
one has to download and install "stylesheet". I think there is meant
"font-stylesheet"? For convenience I added that to the same directory
as font directory and set a path to it as described.

http://fonts.openlilylib.org/docs.html#how-to-us
remarks:
"scm (this is where the new "font.scm" file goes)"
There is such a file alreay. Do I need a new one?

Regards



Am 23.08.2015 16:19, schrieb tisimst:

Hi! 

No, it's not a problem with Linux. Here's what you need to do:

1. Delete any LilyJAZZ files you currently have (they are old and
error-prone as you've discovered). There are old files
and instructions on the web and lilypondblog.org [9] that just don't
apply anymore.

2. Go back to http://fonts.openlilylib.org/lilyjazz [10] and download
the *new* font files and install them by following the instructions
found on http://fonts.openlilylib.org/docs.html [11] for the version
of LP you are using.

3. Also on the docs page, download the *new* stylesheets (about 3/4
way down). Make sure the directory can be found in LP's include path.

That should do it. Then, all you need to do is add

include "lilyjazz.ily"

near the top of your input file.

Let me know if that doesn't work. 

- Abraham



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



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


Re: LilyJAZZ

2015-08-23 Thread Blöchl Bernhard
Thank you for your advices. I updated to version 2.19.25. Then just 
copied the downloaded lilyjazz font files *.woff and *.svg to the 
directory lilypond/usr/share/lilypond/current/fonts/svg and checked if 
they are really there.


Then I tried with a simple sample code

\version "2.19.25"

% To use the font globally, put the following (minimal) code
% at the top of your .ly file:

\paper {
  #(define fonts (set-global-fonts
  #:music "lilyjazz" #:brace "lilyjazz"
  #:roman "lilyjazz-text" #:sans "lilyjazz-chord"
  #:factor (/ staff-height pt 20) ))
}

\score {
  \new Staff {
a b c d
  }
}

I end up with a message that font »lilyjazz-11« was not found.

Concerning to
http://fonts.openlilylib.org/docs.html#font-install
one has to download and install "stylesheet". I think there is meant 
"font-stylesheet"? For convenience I added that to the same directory as 
font directory and set a path to it as described.


http://fonts.openlilylib.org/docs.html#how-to-us
remarks:
"scm (this is where the new "font.scm" file goes)"
There is such a file alreay. Do I need a new one?

Regards



Am 23.08.2015 16:19, schrieb tisimst:

Hi! 

No, it's not a problem with Linux. Here's what you need to do:

1. Delete any LilyJAZZ files you currently have (they are old and
error-prone as you've discovered). There are old files
and instructions on the web and lilypondblog.org [9] that just don't
apply anymore.

2. Go back to http://fonts.openlilylib.org/lilyjazz [10] and download
the *new* font files and install them by following the instructions
found on http://fonts.openlilylib.org/docs.html [11] for the version
of LP you are using.

3. Also on the docs page, download the *new* stylesheets (about 3/4
way down). Make sure the directory can be found in LP's include path.

That should do it. Then, all you need to do is add

include "lilyjazz.ily"

near the top of your input file.

Let me know if that doesn't work. 

- Abraham



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


Re: LilyJAZZ

2015-08-23 Thread Tim McNamara

> On Aug 23, 2015, at 6:56 AM, BB  wrote:



> Does anybody sucessful use LilyJAZZ?

Yes, I have been using it for over a year with excellent results, although 
there are some quirks.  For example, it kills bar numbering.  It also 
interferes with \improvisationOn and I have to turn off LilyJazz to be able to 
use that.



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


Re: LilyJAZZ

2015-08-23 Thread tisimst
Hi!

No, it's not a problem with Linux. Here's what you need to do:

1. Delete any LilyJAZZ files you currently have (they are old and
error-prone as you've discovered). There are old files and instructions on
the web and lilypondblog.org that just don't apply anymore.

2. Go back to http://fonts.openlilylib.org/lilyjazz and download the *new*
font files and install them by following the instructions found on
http://fonts.openlilylib.org/docs.html for the version of LP you are using.

3. Also on the docs page, download the *new* stylesheets (about 3/4 way
down). Make sure the directory can be found in LP's include path.

That should do it. Then, all you need to do is add

\include "lilyjazz.ily"

near the top of your input file.

Let me know if that doesn't work.

- Abraham

On Sunday, August 23, 2015, BB-3 [via Lilypond] <
ml-node+s1069038n179978...@n5.nabble.com> wrote:

> Thanks for all the responses.
>
> I studied
> http://fonts.openlilylib.org/
> Another page abou this topic is
> http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/
>
> I compiled the given example lilypond test codes making shure that the
> font files are in the same directory. But I always end up with an error
> and always "SFNT font table missing". I do not know the "SFNT font table"?
>
> Curiously with the zipped code at the end of the posting
> http://lists.gnu.org/archive/html/lilypond-user/2013-03/msg00647.html
> I get a midi file, but an empty, white pdf document!
>
> I use Linux, may be that Linux does not provide the "SFNT font table"?
> https://en.wikipedia.org/wiki/SFNT
>
> As it always happens despiate I am doing - is it a fundamental error of
> Linux? Does anybody use LilyJAZZ sucessful with Linux?
>
> Regards
>
> ___
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=179978&i=0>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p179978.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> 
> To unsubscribe from Lilypond, click here
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>
> .
> NAML
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/LilyJAZZ-tp179970p179985.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ

2015-08-23 Thread BB

Thanks for all the responses.

I studied
http://fonts.openlilylib.org/
Another page abou this topic is
http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/

I compiled the given example lilypond test codes making shure that the 
font files are in the same directory. But I always end up with an error 
and always "SFNT font table missing". I do not know the "SFNT font table"?


Curiously with the zipped code at the end of the posting
http://lists.gnu.org/archive/html/lilypond-user/2013-03/msg00647.html
I get a midi file, but an empty, white pdf document!

I use Linux, may be that Linux does not provide the "SFNT font table"?
https://en.wikipedia.org/wiki/SFNT

As it always happens despiate I am doing - is it a fundamental error of 
Linux? Does anybody use LilyJAZZ sucessful with Linux?


Regards

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


Re: LilyJAZZ

2015-08-23 Thread Malte Meyn



Am 23.08.2015 um 13:56 schrieb BB:

Does anybody sucessful use LilyJAZZ?



Yes. You should have a look at fonts.openlilylib.org. The use of other 
fonts than Feta/Emmentaler has been simplified in version 2.19.12 but 
you’ll find also instructions how to use these fonts in 2.18.2. And when 
there are updates to LilyJAZZ, you’ll find them there.


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


Re: LilyJAZZ

2015-08-23 Thread Stan Sanderson

> On Aug 23, 2015, at 6:56 AM, BB  wrote:
> 
> I tried LilyJAZZ as it was published (about 2013 ?) but never got it to run 
> properly. 
> http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/
> 
> My actual atempts with a testcode from
> http://lists.gnu.org/archive/html/lilypond-user/2013-03/msg00647.html
> (and other example codes) end with an error. 
> 
> Warnung: Kasten mit negativen Ausmaßen wird nicht gezeichnet, 0.18 mal -0.04.
> Layout nach »/tmp/lilypond-IOz59S« ausgeben...
> Programmierfehler: FreeType-Fehler: SFNT font table missing
> Fortsetzung, die Daumen drücken
> Konvertierung nach »JazzTest.pdf«...
> Warnung: »(gs -q -dSAFER -dDEVICEWIDTHPOINTS=595.28 
> -dDEVICEHEIGHTPOINTS=841.89 -dCompatibilityLevel=1.4 -dNOPAUSE 
> -dBATCH -r1200 -sDEVICE=pdfwrite -sOutputFile=JazzTest.pdf -c.setpdfwrite 
> -f/tmp/lilypond-IOz59S)« gescheitert (256)
> 
> Despite the error message I get a midi-file. (Not with the example above 
> without any midi.) But I do get an empty pdf. Maybe because of "SFNT font 
> table missing" ? There seem to be a font problem? 
> 
> Does anybody sucessful use LilyJAZZ? 
> 
> Regards
> _

Please look at http://fonts.openlilylib.org/index.html and try the solutions 
described on that remarkable page!___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ

2015-08-23 Thread Mike Solomon

> On Aug 23, 2015, at 2:56 PM, BB  wrote:
> 
> I tried LilyJAZZ as it was published (about 2013 ?) but never got it to run 
> properly. 
> http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/ 
> <http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/>
> 
> My actual atempts with a testcode from
> http://lists.gnu.org/archive/html/lilypond-user/2013-03/msg00647.html 
> <http://lists.gnu.org/archive/html/lilypond-user/2013-03/msg00647.html>
> (and other example codes) end with an error. 
> 
> Warnung: Kasten
> mit negativen Ausmaßen wird nicht gezeichnet, 0.18 mal -0.04.
> Layout nach
> »/tmp/lilypond-IOz59S« ausgeben...
> Programmierfehler:
> FreeType-Fehler: SFNT font table missing
> Fortsetzung,
> die Daumen drücken
> Konvertierung
> nach »JazzTest.pdf«...
> Warnung: »(gs
> -q -dSAFER -dDEVICEWIDTHPOINTS=595.28
> -dDEVICEHEIGHTPOINTS=841.89 -dCompatibilityLevel=1.4 -dNOPAUSE
> -dBATCH -r1200 -sDEVICE=pdfwrite -sOutputFile=JazzTest.pdf
> -c.setpdfwrite -f/tmp/lilypond-IOz59S)« gescheitert (256)
> 
>   
> 
> 
>   
> Despite the error message I get a midi-file. (Not with the example above 
> without any midi.) But I do get an empty pdf. Maybe because of "SFNT font 
> table missing" ? There seem to be a font problem? 
> 
> Does anybody sucessful use LilyJAZZ? 
> 
> Regards

Have you tried with the version on http://fonts.openlilylib.org/ 
<http://fonts.openlilylib.org/> ?

Cheers,
MS___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


LilyJAZZ

2015-08-23 Thread BB
I tried LilyJAZZ as it was published (about 2013 ?) but never got it to 
run properly.

http://lilypondblog.org/2013/09/lilypond-and-lilyjazz/

My actual atempts with a testcode from
http://lists.gnu.org/archive/html/lilypond-user/2013-03/msg00647.html
(and other example codes) end with an error.

Warnung: Kasten mit negativen Ausmaßen wird nicht gezeichnet, 0.18 mal 
-0.04.


Layout nach »/tmp/lilypond-IOz59S« ausgeben...

Programmierfehler: FreeType-Fehler: SFNT font table missing

Fortsetzung, die Daumen drücken

Konvertierung nach »JazzTest.pdf«...

Warnung: »(gs -q -dSAFER -dDEVICEWIDTHPOINTS=595.28 
-dDEVICEHEIGHTPOINTS=841.89 -dCompatibilityLevel=1.4 -dNOPAUSE -dBATCH 
-r1200 -sDEVICE=pdfwrite -sOutputFile=JazzTest.pdf -c.setpdfwrite 
-f/tmp/lilypond-IOz59S)« gescheitert (256)



Despite the error message I get a midi-file. (Not with the example above 
without any midi.) But I do get an empty pdf. Maybe because of "SFNT 
font table missing" ? There seem to be a font problem?


Does anybody sucessful use LilyJAZZ?

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


Re: Lilyjazz from a blind user

2015-04-06 Thread Urs Liska

Am 06.04.2015 um 19:40 schrieb tisimst:

Daniel,

Sorry for my late reply. I'll send you the source files later today for
those scores. Hopefully they won't be too hard to follow :-)



There will be usage-example files for most (or hopefully all) fonts 
available in openLilyLib soon, then together with complete source files.


--
Urs Liska
www.openlilylib.org

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


Re: Lilyjazz from a blind user

2015-04-06 Thread tisimst
Daniel,

Sorry for my late reply. I'll send you the source files later today for
those scores. Hopefully they won't be too hard to follow :-)

Regards,
Abraham

On Sat, Apr 4, 2015 at 1:35 PM, Daniel Contreras [via Lilypond] <
ml-node+s1069038n174065...@n5.nabble.com> wrote:

> Hello everyone,
> I am attempting to use lilypond to write jazz charts for a small jazz
> combo, and possibly a jazz trombone ensemble. I downloaded and installed
> the lilyjazz fonts from fonts.openlilylib.org. My question is pertaining
> to the sample PDF documents that came with the zip file. Is there a way I
> could get the lilypond source files that these documents derived from? If
> that is not available, I really just want to know the proper way of
> notating cords/changes. I read the section in the notation reference about
> court names, however, how does one for example write "A13 sharp 11"?  Sorry
> for the long post, thank you for any answers that would point me in the
> right direction.
>
> Daniel Contreras
> ___
> lilypond-user mailing list
> [hidden email] <http:///user/SendEmail.jtp?type=node&node=174065&i=0>
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://lilypond.1069038.n5.nabble.com/Lilyjazz-from-a-blind-user-tp174065.html
>  To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> To unsubscribe from Lilypond, click here
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>
> .
> NAML
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Lilyjazz-from-a-blind-user-tp174065p174127.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Lilyjazz from a blind user

2015-04-04 Thread Daniel Contreras
Hello everyone,
I am attempting to use lilypond to write jazz charts for a small jazz combo, 
and possibly a jazz trombone ensemble. I downloaded and installed the lilyjazz 
fonts from fonts.openlilylib.org. My question is pertaining to the sample PDF 
documents that came with the zip file. Is there a way I could get the lilypond 
source files that these documents derived from? If that is not available, I 
really just want to know the proper way of notating cords/changes. I read the 
section in the notation reference about court names, however, how does one for 
example write "A13 sharp 11"?  Sorry for the long post, thank you for any 
answers that would point me in the right direction. 

Daniel Contreras 
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ fonts

2015-03-30 Thread Federico Bruni
Il 30/mar/2015 09:00 "Martin Tarenskeen"  ha
scritto:
>
>
>
> On Sun, 29 Mar 2015, Abraham Lee wrote:
>
>> Let me simplify this request. The LilyJAZZ music and brace font files
(lilyjazz-11.otf, etc., and lilyjazz-brace.otf)
>> aren't going to change their names. The three remaining files are the
style sheet (LilyJAZZ.ily) and the two supplementary
>> text fonts (LilyJAZZText.otf and LilyJAZZChord.otf).
>>
>> I propose the following new names for these three files to most closely
follow the convention of the music and brace
>> fonts:
>>
>> lilyjazz.ily
>> lilyjazz-text.otf
>> lilyjazz-chord.otf
>>
>> Any other propositions?
>
>
> Sounds good to me. Of coarse, not only filename but also content of
lilyjazz.ily needs to be changed for this :-)
>

Sounds good to me as well
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ fonts

2015-03-30 Thread Martin Tarenskeen



On Sun, 29 Mar 2015, Abraham Lee wrote:


Let me simplify this request. The LilyJAZZ music and brace font files 
(lilyjazz-11.otf, etc., and lilyjazz-brace.otf)
aren't going to change their names. The three remaining files are the style 
sheet (LilyJAZZ.ily) and the two supplementary
text fonts (LilyJAZZText.otf and LilyJAZZChord.otf).

I propose the following new names for these three files to most closely follow 
the convention of the music and brace
fonts:

lilyjazz.ily
lilyjazz-text.otf
lilyjazz-chord.otf

Any other propositions?


Sounds good to me. Of coarse, not only filename but also content of 
lilyjazz.ily needs to be changed for this :-)


--

MT

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


Re: LilyJAZZ fonts

2015-03-29 Thread Abraham Lee
Let me simplify this request. The LilyJAZZ music and brace font files 
(lilyjazz-11.otf, etc., and lilyjazz-brace.otf) aren't going to change their 
names. The three remaining files are the style sheet (LilyJAZZ.ily) and the two 
supplementary text fonts (LilyJAZZText.otf and LilyJAZZChord.otf).

I propose the following new names for these three files to most closely follow 
the convention of the music and brace fonts:

lilyjazz.ily
lilyjazz-text.otf
lilyjazz-chord.otf

Any other propositions?

-Abraham

Sent from my iPhone

> On Mar 29, 2015, at 6:19 PM, tisimst  wrote:
> 
> I'm open to this idea. I, personally, don't care what they are called. Anyone 
> else have an opinion on this matter? I'm happy to change the names, I just 
> want to know that there is sufficient desire from the community.
> 
> - Abraham
> 
> Sent from my iPhone
> 
>> On Mar 29, 2015, at 3:15 PM, Martin Tarenskeen [via Lilypond] <[hidden 
>> email]> wrote:
>> 
>> 
>> Hi, 
>> 
>> May I suggest that all the fonts and files used for the LilyJAZZ font(s) 
>> be renamed to only use lowercase "lilyjazz" instead of LilyJAZZ ? 
>> 
>> Currently I have a LilyJAZZ.ily, lilyjazz-11.otf (etc.), lilyjazz-brace, 
>> and LilyJAZZchord.otf, LilyJAZZText.otf. 
>> 
>> I would prefer lilyjazz.ily, lilyjazz-11.otf, lilyjazz-brace.otf, 
>> lilyjazzText.otf, lilyjazzChord.otf 
>> 
>> Maybe Abraham has an opinion about this? 
>> 
>> -- 
>> 
>> MT 
>> 
>> ___ 
>> lilypond-user mailing list 
>> [hidden email] 
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>> 
>> 
>> If you reply to this email, your message will be added to the discussion 
>> below:
>> http://lilypond.1069038.n5.nabble.com/LilyJAZZ-fonts-tp173848.html
>> To start a new topic under User, email [hidden email] 
>> To unsubscribe from Lilypond, click here.
>> NAML
> 
> View this message in context: Re: LilyJAZZ fonts
> Sent from the User mailing list archive at Nabble.com.
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: LilyJAZZ fonts

2015-03-29 Thread tisimst
I'm open to this idea. I, personally, don't care what they are called. Anyone 
else have an opinion on this matter? I'm happy to change the names, I just want 
to know that there is sufficient desire from the community.

- Abraham

Sent from my iPhone

> On Mar 29, 2015, at 3:15 PM, Martin Tarenskeen [via Lilypond] 
>  wrote:
> 
> 
> Hi, 
> 
> May I suggest that all the fonts and files used for the LilyJAZZ font(s) 
> be renamed to only use lowercase "lilyjazz" instead of LilyJAZZ ? 
> 
> Currently I have a LilyJAZZ.ily, lilyjazz-11.otf (etc.), lilyjazz-brace, 
> and LilyJAZZchord.otf, LilyJAZZText.otf. 
> 
> I would prefer lilyjazz.ily, lilyjazz-11.otf, lilyjazz-brace.otf, 
> lilyjazzText.otf, lilyjazzChord.otf 
> 
> Maybe Abraham has an opinion about this? 
> 
> -- 
> 
> MT 
> 
> ___ 
> lilypond-user mailing list 
> [hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://lilypond.1069038.n5.nabble.com/LilyJAZZ-fonts-tp173848.html
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com 
> To unsubscribe from Lilypond, click here.
> NAML




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/LilyJAZZ-fonts-tp173848p173858.html
Sent from the User mailing list archive at Nabble.com.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


LilyJAZZ fonts

2015-03-29 Thread Martin Tarenskeen


Hi,

May I suggest that all the fonts and files used for the LilyJAZZ font(s) 
be renamed to only use lowercase "lilyjazz" instead of LilyJAZZ ?


Currently I have a LilyJAZZ.ily, lilyjazz-11.otf (etc.), lilyjazz-brace, 
and LilyJAZZchord.otf, LilyJAZZText.otf.


I would prefer lilyjazz.ily, lilyjazz-11.otf, lilyjazz-brace.otf, 
lilyjazzText.otf, lilyjazzChord.otf


Maybe Abraham has an opinion about this?

--

MT

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


  1   2   >