Re: fonts on windows

2022-01-15 Thread Kevin Pye
While my knowledge of Windows is extremely limited, my experience is that Windows lies to you. If you use Windows Explorer to navigate to c:\windows\fonts you will see a lot of fonts installed. If instead you open a command window, cd to the same directory and run "dir", you will get a

Running 2.23.7 on Linux

2022-03-27 Thread Kevin Pye
(OpenSUSE Leap 15.3 to be precise) So I've downloaded 2.23.7 and untarred into ~/Software/lilypond-2.23.7, created a symbolic link from ~/Software/lilypond-2.23.7/bin/lilypond to ~/bin/lilypond, and get the following... > ~/bin/lilypond --version GNU LilyPond 2.23.7 (running Guile 2.2)

Re: optical recognition for input

2022-01-17 Thread Kevin Pye
Is there any particular reason you are trying to compile from source? github.com/Audiveris/audiveris/releases has an MSI you can run which should install everything you need to run it. Kevin. On Tue, 18 Jan 2022, at 12:19, Josiah Boothby wrote: > On 1/17/22 15:34, James B. Wilkinson wrote: >>

Interesting accidental placement with Score.modern style

2023-10-25 Thread Kevin Pye
I'm engraving a score using Score.modern accidental style. I have a repeated chord with an F♯ and an F♮ above it. If you set it with just " q" then lilypond adds a natural symbol to the F in the second chord, presumably to cancel the sharp in the first chord. If I explicitly add a natural sign

Re: Bar numbers and multiple tempo lines

2023-05-09 Thread Kevin Pye
the original behaviour quite well. Kevin. On Tue, 9 May 2023, at 17:30, Jean Abou Samra wrote: > Le mardi 09 mai 2023 à 17:21 +1000, Kevin Pye a écrit : > >> However, when this is done the bar numbers are lowered, and conflict with >> the ChoirStaff bracket: (Normally the

Bar numbers and multiple tempo lines

2023-05-09 Thread Kevin Pye
I often generate vocal scores with multiple staves in a ChoirStaff and two staves in a PianoStaff. Typically such scores have the tempo markings both above the ChoirStaff and above the PianoStaff. This is easily done in Lilypond by moving the Metronome_mark_engraver and

Re: Footnote separator line

2024-01-23 Thread Kevin Pye
Thanks Michael, To my eye that looks a lot better. Kevin. On Wed, 24 Jan 2024, at 12:57, Michael Werner wrote: > Hi Kevin, > > On Tue, Jan 23, 2024 at 8:06 PM Kevin Pye wrote: >> __ >> For the first time in many years of using Lilypond, I have a need to add a >>

Footnote separator line

2024-01-23 Thread Kevin Pye
For the first time in many years of using Lilypond, I have a need to add a footnote to some music. One thing puzzles me: As is traditional in all texts, Lilypond places a horizontal line above the footnotes, separating them from the music above. However the horizontal position of this line

Unexpected bar boundaries with volta repeats and lyrics.

2023-12-08 Thread Kevin Pye
Compiling the following lilypond code: \version "2.25.10" music = \relative { \time 4/4 \repeat volta 2 { d'1 | \alternative { { d1 | } { | r4 d2 d4 | d1 } } } \bar "|." } words = \lyricmode { \repeat volta 2 { a

Re: Unexpected bar boundaries with volta repeats and lyrics.

2023-12-09 Thread Kevin Pye
Fri, Dec 8, 2023 at 11:31 PM Kevin Pye wrote: >> __ >> What silly mistake am I making here? > > Not all that silly. Though the docs do talk about putting lyrics into the > same repeat structure as the music, there's one detail in > http://lilypond.org/doc/v2.25/Document

Re: French Horn - transposing

2024-03-08 Thread Kevin Pye
I'm a little confused as to what you want. If the band's horns are in F pitch, why do you want the score in E♭? But anyway, to transpose from F to E♭, modify the lines which use your variables to \transpose F ees \frhornInIINotes and \transpose F ees \frhornIIInIVNotes There is also

Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kevin Pye
I have two questions about this snippet: The easy question. The fourth line of the snippet reads: (PI_OVER_180 (/ (atan2 1 1) 34)) Surely that “34” should be “45”. The more difficult question. This snippet adds two arrows to the bar line at the end of the staff. I have a case where there is

Re: Snippet: Adding indicators to staves which split after a break

2024-03-25 Thread Kevin Pye
>> The easy question. The fourth line of the snippet reads: >>(PI_OVER_180 (/ (atan2 1 1) 34)) >> Surely that “34” should be “45”. > > Did you try changing it? ;) Yes. It breaks things slightly. I need to dive further down the rabbit-hole to work out why. >> The more difficult question.

Scheme help

2024-05-23 Thread Kevin Pye
So after 56 years of programming I've at last got around to writing some Lisp, and of course it doesn't work. I'm trying to define a routine repeat-verses which would be used like \repeat-verses 3 \music which would have the effect of \keepWithTag #'v1 \music \keepWithTag #'v2 \music

Re: Scheme help

2024-05-24 Thread Kevin Pye
-function ( count music ) > ( index? ly:music? ) >(make-music 'SequentialMusic 'elements > (map-in-order > (lambda (verse) >(let ((versenum (string->symbol (format #f "v~a" verse > (keepWithTag versenum (ly:music