Re: Override note properties in markup,note or rhythm

2023-01-22 Thread | || | |
Got it. Now I think I agree with you this is better how it is. Thank you again :) Tomasz W dniu 22.01.2023 o 17:46, Jean Abou Samra pisze: Le 22/01/2023 à 14:11, | || | | a écrit : Thank you for the really comprehensive answer! You solved a few other problems I was struggling with in the

Re: Lilypond in Termux (Android)

2023-01-22 Thread m.tarensk...@kpnmail.nl
Maybe you need to run the termux-setup-storage command?Maybe the location where you have your .ly file is read-only for Termux?It's working for me. Communication between files inside the Termux directories and other locations and apps (like my pdf viewer) on my tablet is a bit awkward, but it

Re: Repeat Segno with MIDI

2023-01-22 Thread Jean Abou Samra
On 22/01/2023 22:03, Jean Abou Samra wrote: > Le 22/01/2023 à 21:58, Jean Abou Samra a écrit : >>   \volta   1        {   a4 a4 a4 a4   } >>         >> ~~ >>   \volta       > > > > Stupid

Re: Repeat Segno with MIDI

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 21:58, Jean Abou Samra a écrit :   \volta   1        {   a4 a4 a4 a4   }         ~~   \volta       Stupid mail client mangling indentation... I hope it'll work this time:  

Re: Lilypond in Termux (Android)

2023-01-22 Thread Shane Brandes
o.k. out of rampant curiosity I gave it a try on termux. And can't seem to get any output. I managed to download lilypond 2.24.0 and extract it and the chmod to make executable. Added a shebang and ran it on a file. it appears to work, but either there is no actual output, or it gets placed

Re: Repeat Segno with MIDI

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 21:25, Mark Mathias a écrit : Jean, Ahh... of course. I had forgotten that LilyPond doesn't require the braces for a single note, but does for anything more. Well... that is true in a sense, but from the way you phrase it, I have the impression that the underlying logic that

Re: Repeat Segno with MIDI

2023-01-22 Thread Mark Mathias
Jean, Ahh... of course. I had forgotten that LilyPond doesn't require the braces for a single note, but does for anything more. Thank you! Mark On Sun, Jan 22, 2023 at 3:17 PM Jean Abou Samra wrote: > Le 22/01/2023 à 21:05, Mark Mathias a écrit : > > I'm not seeing a post from anyone else

Re: Repeat Segno with MIDI

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 21:05, Mark Mathias a écrit : I'm not seeing a post from anyone else exactly on this issue, so... I like the new repeat structure: https://lilypond.org/doc/v2.24/Documentation/notation/long-repeats#segno-repeat-structure The example works with the whole note after volta 1, but

Translating “Extending LilyPond” — any takers?

2023-01-22 Thread Jean Abou Samra
Hi, [Sent to lilypond-user, BBCed to lilypond-devel] After almost two years of promising myself I would integrate https://extending-lilypond.readthedocs.io/ into the official LilyPond documentation someday while never doing it, I decided to officialize the status quo that it would be maintained

Repeat Segno with MIDI

2023-01-22 Thread Mark Mathias
I'm not seeing a post from anyone else exactly on this issue, so... I like the new repeat structure: https://lilypond.org/doc/v2.24/Documentation/notation/long-repeats#segno-repeat-structure The example works with the whole note after volta 1, but if you add more notes, change the rhythm, etc.,

Re: substitution function variable name

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 18:22, Darren Ng a écrit : Thanks. The following works: accOne = #(define-music-function (x) (ly:pitch?) #{ $x 8 $x 8 #}) My ultimate goal is a function which does the following accTwo = #(define-music-function (x

Re: LP 2.24.0 segno repeat where coda break is in the middle of a repeat volta block

2023-01-22 Thread Kenneth Wolcott
Hi David; Thank you so much for reminding me that there are ways to reduce the size of the pdf, decreasing the size to reduce the pain of downloading a huge attachment. Ken On Sun, Jan 22, 2023 at 8:35 AM David Wright wrote: > > On Sat 21 Jan 2023 at 15:51:16 (-0800), Kenneth Wolcott wrote:

Re: substitution function variable name

2023-01-22 Thread Darren Ng
Thanks. The following works: accOne = #(define-music-function (x) (ly:pitch?) #{ $x 8 $x 8 #}) My ultimate goal is a function which does the following accTwo = #(define-music-function (x) (ly:pitch?) #{ $x 8 r8

Re: Override note properties in markup,note or rhythm

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 14:11, | || | | a écrit : Thank you for the really comprehensive answer! You solved a few other problems I was struggling with in the process. I don't get why this kind of diversity with overriding properties would have any purpose for a user. I mean, I see there are different

Re: substitution function variable name

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 17:33, Jean Abou Samra a écrit : Le 22/01/2023 à 17:20, Darren Ng a écrit : Define substitution function accOne() as: accOne = #(define-music-function (x    ) (ly:music?)    #{ $x8 $x8 $x8 $x8 $x8    #}) Call accOne() with:

Re: LP 2.24.0 segno repeat where coda break is in the middle of a repeat volta block

2023-01-22 Thread David Wright
On Sat 21 Jan 2023 at 15:51:16 (-0800), Kenneth Wolcott wrote: > Using Lilypond 2.24.0, I engraved "Memory" (from "Cats") using the > example published in the Hal Leonard Easy Piano Songs book (the pdf > file generated from photos from this book are huge). I displayed your PDF at 60% size, and

Re: substitution function variable name

2023-01-22 Thread Jean Abou Samra
Le 22/01/2023 à 17:20, Darren Ng a écrit : Define substitution function accOne() as: accOne = #(define-music-function (x) (ly:music?) #{ $x8 $x8 $x8 $x8 $x8 #}) Call accOne() with: \accOne f Expected output is: f8 f8 f8

substitution function variable name

2023-01-22 Thread Darren Ng
Define substitution function accOne() as: accOne = #(define-music-function (x) (ly:music?) #{ $x8 $x8 $x8 $x8 $x8 #}) Call accOne() with: \accOne f Expected output is: f8 f8 f8 f8 f8 However, lilypond reports error as follows:

Lilypond in Termux (Android)

2023-01-22 Thread Martin Tarenskeen
Hi, Recently I discovered that LilyPond is available for Termux, a Linux-like terminal app for Android devices. Unfortunately it crashed my older (32bits) Samsung tablet, but it did run on my (64bits) phone. After my bugreport on Github something was fixed in the Guile package built for

Re: Override note properties in markup,note or rhythm

2023-01-22 Thread | || | |
Thank you for the really comprehensive answer! You solved a few other problems I was struggling with in the process. I don't get why this kind of diversity with overriding properties would have any purpose for a user. I mean, I see there are different sizes of notes between general score and

Re: Slurs not being followed in one vocal part

2023-01-22 Thread Lukas-Fabian Moser
Hi Jon, Am 22.01.23 um 03:31 schrieb Jon Arnold: Thanks all! Separating the voices did fix the problem. I used this score a long time ago and then updated the layout, so I feel like an update several years ago must have changed the behavior, which is interesting. Compare: \version "2.24"