Re: Tie with slash (caesura) on the curve

2022-11-09 Thread Dirck Nagy
Hi Pierre It works! Thank you SO much! I would never have been able to do that on my own. Good to see you are still around Lilypond! Andrew, yes it is for guitar Thanks again! dirck From: lilypond-user-bounces+dnagy=uwlax@gnu.org on behalf of Pierre

Re: Tie with slash (caesura) on the curve

2022-11-09 Thread Pierre Perol-Schneider
Hi Andrew, Hi Dirck, Le jeu. 10 nov. 2022 à 02:40, Andrew Bernard a écrit : > Never say anything is technically unplayable for pianists. Some of the > technical ability of contemporary players leaves me breathless. > ... Actually it's for guitarists ;) On 10/11/2022 12:02 pm, Dirck Nagy wrote:

Re: Tie with slash (caesura) on the curve

2022-11-09 Thread Andrew Bernard
Never say anything is technically unplayable for pianists. Some of the technical ability of contemporary players leaves me breathless. What you are after perhaps is an editorial tie. Dorico has them, with a single bar through the middle. I know its not exactly the same. I'm sure I have come a

Re: Manually override code names?

2022-11-09 Thread Jean Abou Samra
Le 07/11/2022 à 08:23, Tom Campbell a écrit : Using a rootless version of C13 in the piano left hand makes Lilypond call it an E variant. I can't figure out how to override chord names so I'm using markup, like this. What am I doing wrong? How about this: \version "2.22.2" leftHand = \rela

Re: Flexible lyric alignment

2022-11-09 Thread Jean Abou Samra
Le 10/11/2022 à 00:16, Kieren MacMillan a écrit : As I've described to you before, that is my preferred approach to coding. :) Would be more than happy to do that — with or without you "live" (via video-conference) — and then watch as you take the next step(s): Sorry, I already have some b

Re: Flexible lyric alignment

2022-11-09 Thread Kieren MacMillan
Hi Jean, > This is not easy to do and it cannot be done with Scheme only. That was clear the moment Janek and I started working on the problem… > To tackle this, the first step would be sitting down with paper, > formulating what new kind of problem we want, and figuring out > an algorithm to so

Re: Flexible lyric alignment

2022-11-09 Thread Jean Abou Samra
Le 09/11/2022 à 19:51, Kieren MacMillan a écrit : Thoughts? I'm afraid my own Scheme skills aren't up to the task for this. I'm also fully aware that I can adjust this manually at the problematic places. I'd like to avoid that if possible, but will do that if needed. Please let's talk with som

Re: Adding durations (for \after)

2022-11-09 Thread Joel C. Salomon
On 11/9/22 13:21, Lukas-Fabian Moser wrote: Am 09.11.22 um 16:11 schrieb David Kastrup: Maybe something like     \after #(make-duration-of-length (ly:music-length #{ 2. 4. #})) Or, with a bit of added sugar: \version "2.23.4" #(define (duration-or-music? x)    (or (ly:duration? x) (l

Re: Which timesteps are created?

2022-11-09 Thread Jean Abou Samra
Le 09/11/2022 à 19:22, Lukas-Fabian Moser a écrit : Anyway: Thanks to both of you (Jean and David); I'm a bit swamped at the moment and have to postpone further work on this, but will definitely follow the directions you gave me. I'm not sure what you mean by "working" on this (writing .ly co

Re: Which timesteps are created?

2022-11-09 Thread David Kastrup
Lukas-Fabian Moser writes: > Hi, > > Am 06.11.22 um 20:49 schrieb David Kastrup: >> Lukas-Fabian Moser writes: >> >>> a) We see a timestep at the end of events even in _other_ contexts >>> than the one the engraver lives in. >>> b) We see a timestep at every bar boundary. >> Only if context prop

Re: Adding durations (for \after)

2022-11-09 Thread Jean Abou Samra
Le 09/11/2022 à 19:21, Lukas-Fabian Moser a écrit : I'm a bit surprised that \version "2.23.4" #(define (duration-or-music? x)    (or (ly:duration? x) (ly:music? x))) duration = #(define-scheme-function (x) (duration-or-music?)    (if (ly:duration? x)    x    (make-duration-of-length (

Re: Flexible lyric alignment

2022-11-09 Thread Kieren MacMillan
Hi Abraham, (Great to see you on-list again!) > It's been some time since I've posted anything here, but a recent project has > caused me to jump back into creating scores. I'm working on a relatively > simple choral piece with piano accompaniment and seeing all the ways the > lyric syllables

Re: Which timesteps are created?

2022-11-09 Thread Lukas-Fabian Moser
Hi, Am 06.11.22 um 20:49 schrieb David Kastrup: Lukas-Fabian Moser writes: a) We see a timestep at the end of events even in _other_ contexts than the one the engraver lives in. b) We see a timestep at every bar boundary. Only if context property Score.skipBars is ##f . I'm interested in b

Re: Adding durations (for \after)

2022-11-09 Thread Lukas-Fabian Moser
Hi all, Am 09.11.22 um 16:11 schrieb David Kastrup: says: Factors may also be added by using Scheme expressions evaluating to a number or musical length like `*#(ly:music-length music)`. Is there an exam

Re: Change clef too close to the chord after it

2022-11-09 Thread Knute Snortum
On Wed, Nov 9, 2022 at 12:03 AM Jean Abou Samra wrote: > > Le 09/11/2022 à 01:13, Knute Snortum a écrit : > > Thank you for that, and for the URL to the documentation. > > > > I have one more question (for you or anyone): in my example if you > > remove the markup, the change clef is placed horizo

Re: Adding durations (for \after)

2022-11-09 Thread David Kastrup
"Joel C. Salomon" writes: > > says: > >> Factors may also be added by using Scheme expressions evaluating to a >> number or musical length like `*#(ly:music-length music)`. > > Is there an example of such ad

Re: Explicitly add extra space before a note

2022-11-09 Thread Volodymyr Prokopyuk
Hi Jean and Leo, The \tweak extra-spacing-width #'(-2.5 . 0) is exactly what I was looking for! [image: image.png] Thank you very much for your attitude, agility and quality responses! Have a good day, Vlad On Wed, Nov 9, 2022 at 1:56 PM Leo Correia de Verdier < leo.correia.de.verd...@gmail.com>

Adding durations (for \after)

2022-11-09 Thread Joel C. Salomon
says: > Factors may also be added by using Scheme expressions evaluating to a > number or musical length like `*#(ly:music-length music)`. Is there an example of such addition handy? The stripped-down exa

Re: Explicitly add extra space before a note

2022-11-09 Thread Leo Correia de Verdier
I think what you are asking for is extra-spacing-width, but it might be easier to use repeatTie instead of slur. ## \version "2.23.11" \relative c'' { b1 a \repeatTie \tweak extra-spacing-width #'( -5 . 0 ) c \repeatTie d, \repeatTie \tweak extra-spacing-width #'( -5 . 0

Re: Explicitly add extra space before a note

2022-11-09 Thread Jean Abou Samra
Le 09/11/2022 à 13:35, Volodymyr Prokopyuk a écrit : *Question* Is there a way to *explicitly add horizontal space before a note* to accommodate the extra slur in \volta 2? Have a look at this: https://lilypond.org/doc/v2.23/Documentation/notation/adjusting-horizontal-spacing-for-specific-

Explicitly add extra space before a note

2022-11-09 Thread Volodymyr Prokopyuk
Hello, *Problem* When a slur continues on a new Staff a small horizontal space is added automatically to accommodate the slur like below [image: image.png] When I add an extra slur with the d2 \tweak control-points #'(...) ( r4) in \volta 2 the extra space is not added and the slur crosses the re

Re: Change clef too close to the chord after it

2022-11-09 Thread Jean Abou Samra
Le 09/11/2022 à 01:13, Knute Snortum a écrit : Thank you for that, and for the URL to the documentation. I have one more question (for you or anyone): in my example if you remove the markup, the change clef is placed horizontally correctly. Is this a bug, or is something else going on that I don