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

Re: Video generation from multiple pages

2023-12-04 Thread Stefano Antonelli
On Mon, 2023-12-04 at 14:48 -0600, Karlin High wrote: > On 12/1/2023 2:21 PM, Stefano Antonelli wrote: > > trying to modify ly2video to produce a different kind of video > > Have you seen Knut Petersen's MKVIDEO project? I have, but thanks for the suggestion. MKVIDEO is not nicely distributed

Re: clefs, time signatures, and key signatures

2023-12-04 Thread Werner LEMBERG
> please have a look at Merge Request 2188 and comment there on how to > proceed with the new distances between clefs and time signatures, > together with the new distances between clefs and key signatures. > > https://gitlab.com/lilypond/lilypond/-/merge_requests/2188 > > The question is

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

Re: Video generation from multiple pages

2023-12-04 Thread Karlin High
On 12/1/2023 2:21 PM, Stefano Antonelli wrote: trying to modify ly2video to produce a different kind of video Have you seen Knut Petersen's MKVIDEO project?

clefs, time signatures, and key signatures

2023-12-04 Thread Werner LEMBERG
Folks, please have a look at Merge Request 2188 and comment there on how to proceed with the new distances between clefs and time signatures, together with the new distances between clefs and key signatures. https://gitlab.com/lilypond/lilypond/-/merge_requests/2188 The question is whether

Re: Video generation from multiple pages

2023-12-04 Thread Stefano Antonelli
On Sat, 2023-12-02 at 22:56 -0800, Stefano Antonelli wrote: I wanted to mention that for some reason none of this stuff works unless it appears before the score block. Both dump-spacetime-info.ly and event-listener.ly must be included at the top of the file. If they are located at the bottom of

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

Re: spacing puzzle

2023-12-04 Thread Kieren MacMillan
Hi David, Have you looked at all the spacing parameters? https://lilypond.org/doc/v2.23/Documentation/notation/flexible-vertical-spacing-paper-variables#list-of-flexible-vertical-spacing-paper-variables In particular: top-system-spacing the distance from the top of the printable area (i.e., the

spacing puzzle

2023-12-04 Thread bobr...@centrum.is
I have a situation where I have too much music for one page and not enough to fill two pages. My desired solution is to split the material roughly 50/50 between two facing pages. Each page would be filled approximately 1/3 but I want that 1/3 centered top to bottom. I can achieve that by

Re: Centering a word before a gap in the lyrics

2023-12-04 Thread Michael Werner
Hi Paul, On Mon, Dec 4, 2023 at 6:56 AM Paul Hodges wrote: > I don't know where in the documentation the difference in behaviour > between \skip1 and "" as opposed to _ is explained. > It isn't much of an explanation, but in

Re: Centering a word before a gap in the lyrics

2023-12-04 Thread Paul Hodges
I don't know where in the documentation the difference in behaviour between \skip1 and "" as opposed to _ is explained.  But the opportunity is missed on these pages, the first of which actually conflates the "" and _ notation:

Re: Centering a word before a gap in the lyrics

2023-12-04 Thread Paul Hodges
Sure. Just use a skip. Like so: And now I discover that "" will do the same - which makes it doubly curious that " " does not.  "" is a lot more elegant than \skip1 as well! Paul

Re: Centering a word before a gap in the lyrics

2023-12-04 Thread Paul Hodges
I should have tried that again; but I've tried it in the past and it hasn't seemed to work.  There must be some other subtlety involved; scores converted from Music XML use \skip1 for melismas...  I guess I haven't fully internalised the various options for lyric placement. Thanks, Paul

Re: Centering a word before a gap in the lyrics

2023-12-04 Thread Michael Werner
Hi Paul, On Mon, Dec 4, 2023 at 3:52 AM Paul Hodges wrote: > In the middle lyric, the first word is justified because the following > skip (_ in this case) defines a melisma. But I actually simply want there > to be no immediately following word - this arises with multiple verses and >

Centering a word before a gap in the lyrics

2023-12-04 Thread Paul Hodges
Consider the following: %%% \version "2.25.10" wordsA = \lyricmode { centred centred centred } wordsB = \lyricmode { justified _ centred }  wordsC = \lyricmode { justified " " centred }  wordsC = \lyricmode { centred \once \override Lyrics.LyricText.color = #white "." centred }