Rules for beam subdivision

2020-05-29 Thread Vaughan McAlley
Hi, Beam subdivision is great, but is there a way of automatically turning it off for just sixteenths? So recreating this example, but without constantly turning subdivision on and off. Cheers, Vaughan subdivision.ly Description: Binary data

Re: use variable out side procedure

2020-05-29 Thread Freeman Gilmore
On Fri, May 29, 2020 at 4:19 PM Ralf Mattes wrote: > > Sorry if I allow myself to comment as a lurker on this list > > Am Freitag, 29. Mai 2020 21:26 CEST, Aaron Hill > schrieb: > > > On 2020-05-29 6:49 am, Freeman Gilmore wrote: > > > I guess i need a text/course book in scheme that

Re: use variable out side procedure

2020-05-29 Thread Freeman Gilmore
Thank you Aaron: I asked a simple question because all the ways I tried to make it work failed; and there was a simple solution, which many would know. If it is in the LilyPond manuals or guide manual, I would not know how to find it even if it were there. You can not learn scheme from those

Re: Fingering inside staff

2020-05-29 Thread Thomas Morley
Am Sa., 30. Mai 2020 um 00:08 Uhr schrieb Valentin Villenave : > > On 5/29/20, Pierre Perol-Schneider wrote: > > Hi Simone, > > A basic solution: > > \relative c' { > > \stemUp > > \override Fingering.staff-padding = #'() > > 4 8 > > } > > Sure there are workarounds, but: shouldn’t we be

Re: Bar line definition with annotation

2020-05-29 Thread Thomas Morley
Hi, Am Fr., 29. Mai 2020 um 22:36 Uhr schrieb Timothy Lanfear : > > \defineBarLine with annotation changes the span bar type when the bar is > in the middle of a system, but not at the end. A modification of the > example from >

Re: Fingering inside staff

2020-05-29 Thread Valentin Villenave
On 5/29/20, Pierre Perol-Schneider wrote: > Hi Simone, > A basic solution: > \relative c' { > \stemUp > \override Fingering.staff-padding = #'() > 4 8 > } Sure there are workarounds, but: shouldn’t we be treating this as a bug? There’s no obvious reason why unsetting staff-padding should

Re: use variable out side procedure

2020-05-29 Thread Valentin Villenave
On 5/29/20, Ralf Mattes wrote: > No, no, no! While all the books you mention are very good books (even so > very special) they are really bad books for smeone trying to learn Scheme to > get > along with Lilypond. Well, to each their own I guess. Getting some useful basics in programming has

Re: italian list or forum

2020-05-29 Thread Valentin Villenave
On 5/29/20, Federico Bruni wrote: > Next week I'll send a patch to update the website. Great! This should also appear in news-headlines, methinks. Looking forward to seeing your patch! Cheers, -- V.

Bar line definition with annotation

2020-05-29 Thread Timothy Lanfear
\defineBarLine with annotation changes the span bar type when the bar is in the middle of a system, but not at the end. A modification of the example from https://lilypond.org/doc/v2.20/Documentation/notation/bars#bar-lines, does not give a dashed span bar at the end of the system.

Re: use variable out side procedure

2020-05-29 Thread Ralf Mattes
Sorry if I allow myself to comment as a lurker on this list Am Freitag, 29. Mai 2020 21:26 CEST, Aaron Hill schrieb: > On 2020-05-29 6:49 am, Freeman Gilmore wrote: > > I guess i need a text/course book in scheme that explained little > > things like that. That was simple, thank you,

Re: italian list or forum

2020-05-29 Thread Federico Bruni
On Sat, 23 May, 2020 at 09:39, Valentin Villenave wrote: My advice would be to name your list lilypond-it Here is it: https://lists.gnu.org/mailman/listinfo/lilypond-it Next week I'll send a patch to update the website.

Re: use variable out side procedure

2020-05-29 Thread Aaron Hill
On 2020-05-29 6:49 am, Freeman Gilmore wrote: I guess i need a text/course book in scheme that explained little things like that. That was simple, thank you, ƒg Might I recommend the following: - "The Little Schemer" [1] Daniel P. Friedman, Matthias

Re: Mac OS X Catalina 64-bit compile ?

2020-05-29 Thread Karlin High
On 5/29/2020 1:39 PM, Wim van Dommelen wrote: most of the links are broken, trying to do a straightforward download is almost impossible Sorry, I should have checked further. Do the links on this other page work for you? -- Karlin High

Re: Mac OS X Catalina 64-bit compile ?

2020-05-29 Thread Wim van Dommelen
Hi Karlin, I've seen this setup. It has (at least) two problems: - most of the links are broken, trying to do a straightforward download is almost impossible - when I register myself, I'am to pay for this platform Has LilyPond come so far now?, When will it be ready to be sold

Re: Mac OS X Catalina 64-bit compile ?

2020-05-29 Thread Hans Åberg
> On 29 May 2020, at 18:29, Wim van Dommelen wrote: > > Is there somebody already working on a proper 64-bit compile of LilyPond for > the new Mac OS X 10.15.4 "Catalina" version? > > As an end-user now (but with more than 25 years of software experience, a lot > of mainframe and Unix hours

Re: Mac OS X Catalina 64-bit compile ?

2020-05-29 Thread Karlin High
On 5/29/2020 11:29 AM, Wim van Dommelen wrote: Is there somebody already working on a proper 64-bit compile of LilyPond for the new Mac OS X 10.15.4 "Catalina" version? Yes: Marnen Laibow-Koser has produced this. I haven't seen a build yet for

Mac OS X Catalina 64-bit compile ?

2020-05-29 Thread Wim van Dommelen
Is there somebody already working on a proper 64-bit compile of LilyPond for the new Mac OS X 10.15.4 "Catalina" version? As an end-user now (but with more than 25 years of software experience, a lot of mainframe and Unix hours spend in systems programming, now retired), I liked the Apple "old

Re: Fingering inside staff

2020-05-29 Thread Jamie Beardslee
Should be simple enough to just tweak the vertical offset. \relative c' { \stemUp \override Fingering.staff-padding = #'() 4 g'8-\tweak Y-offset #0 -0 g' }

Re: Fingering inside staff

2020-05-29 Thread Pierre Perol-Schneider
Hi Simone, A basic solution: \version "2.20.0" \relative c' { \stemUp \override Fingering.staff-padding = #'() 4 8 } Cheers, Pierre Le ven. 29 mai 2020 à 15:20, Simone Capretti a écrit : > Hello to all, > > I've read in the manual that it's possible to insert fingering inside the >

Re: use variable out side procedure

2020-05-29 Thread Freeman Gilmore
I guess i need a text/course book in scheme that explained little things like that. That was simple, thank you, ƒg On Fri, May 29, 2020 at 9:37 AM Valentin Villenave wrote: > > On 5/29/20, Freeman Gilmore wrote: > > But how do i get Z (or x) out side so i can use the variable? for example: >

Re: use variable out side procedure

2020-05-29 Thread Valentin Villenave
On 5/29/20, Freeman Gilmore wrote: > But how do i get Z (or x) out side so i can use the variable? for example: > #(display Z) You need to define it at the top-level; then you can change its value using set!: \version "2.20.0" #(use-modules (ice-9 regex)) #(define Z '()) j =

use variable out side procedure

2020-05-29 Thread Freeman Gilmore
\version "2.20.0" #(use-modules (ice-9 regex) j = #(define-void-function (x) (string>?) (define Z x) (display Z))%works \j "-3 +8 -6+1-8" But how do i get Z (or x) out side so i can use the variable? for example: #(display Z) Thank you, ƒg

Fingering inside staff

2020-05-29 Thread Simone Capretti
Hello to all, I've read in the manual that it's possible to insert fingering inside the staff: \relative c' {     \stemUp     \override Fingering.staff-padding = #'()     4 8 } however, if you have notes that are tied together the fingering is always outside the staff: \relative c' {    

LilyPond 2.21.1 installer on MacOS 10.15

2020-05-29 Thread Hans Åberg
I made a LilyPond 2.21.1 installer for use on MacOS 10.15 from MacPorts lilypond-devel, available on the link below. It installs in /opt/lilypond/, with the program in /opt/lilypond/bin/lilypond. If you have already something installed in this directory, it may be prudent to remove it first.

Re: When (in seconds) does each page begin?

2020-05-29 Thread Valentin Villenave
On 5/29/20, Matt Wallis wrote: > BTW, I didn't see a vibraphone example. I scanned a few branches, but > maybe I didn't try the right branch. That’s the “pools” example. You can try the following: ## git clone https://gitlab.com/sigmate/lilypond-html-live-score cd

Re: italian list or forum

2020-05-29 Thread Han-Wen Nienhuys
Done. On Wed, May 27, 2020 at 1:22 PM Federico Bruni wrote: > > Il giorno sab 23 mag 2020 alle 09:39, Valentin Villenave > ha scritto: > > On 5/22/20, Federico Bruni wrote: > >> Do you know how can I ask GNU to create a new mailing list? > > > > LilyPond has currently four admins listed on

Re: When (in seconds) does each page begin?

2020-05-29 Thread Matt Wallis
On 28/05/2020 23:15, Valentin Villenave wrote: On 5/28/20, Matt Wallis wrote: The output from event-listener is so close. I just need to get it to listen to the appropriate events ... if that is possible. Then you should definitely have a look at the last link I sent (lilypond-html-video);

Re: How to enter chords names in makam.ly

2020-05-29 Thread Valentin Villenave
On 5/28/20, prosfigaki80 wrote: > Hi, I am writing music including makam.ly but chords names different from > natural notes are not recognized by Lilypond Greetings, you’re right. You can fix it by adding this at the top of your file: \include "makam.ly" #(set! language-pitch-names