Re: How do you insert measures into scores with many parts?

2024-09-28 Thread Saul Tobin
It's almost certainly feasible to write a script to run within an editor that would use Lilypond itself to parse the duration of the music expression and insert, lengthen, or shorten material at a specified point within it — given some rigid but typical assumptions about the structure of the input

Re: How do you insert measures into scores with many parts?

2024-09-28 Thread Simon Albrecht
gridLY, part of the OpenLilyLib ecosystem, is one way to deal with that, although a very involved way that’s only going to be worthwhile for very large collaborative projects. Personally, I am entirely dependent on Frescobaldi point-and-click for this kind of issue. Best, Simon

How to shape the second tie after tieWaitForNote = ##t?

2024-09-28 Thread Knute Snortum
I am trying to change the shape of two ties after tieWaitForNote is set to true. If I use the \shape command, the second tie is not affected. Here is an MWE: %%% \version "2.24.4" tieShapeA = \shape #'((0 . -1) (0 . 0) (0 . 0) (0 . 0)) \etc tieShapeB = \shape #'((0 . 1) (0 . 0) (0 . 0) (0 . 0))

Re: How do you insert measures into scores with many parts?

2024-09-28 Thread David Zelinsky
Sebastian Menge writes: > I am not an expert in lilypond, but as a language it does not have the > proper semantics/structures to do that - it is not XML or Json or so. Other > Notation programs have internal data structures that make it easy to > implement that. > > So the editor has to overcome

Re: How do you insert measures into scores with many parts?

2024-09-28 Thread Sebastian Menge
I am not an expert in lilypond, but as a language it does not have the proper semantics/structures to do that - it is not XML or Json or so. Other Notation programs have internal data structures that make it easy to implement that. So the editor has to overcome it. And the editor then needs hints,

Re: How do you insert measures into scores with many parts?

2024-09-28 Thread David Zelinsky
David Bellows writes: > This is a question that came up on Reddit the other day and I didn't > have an answer (it never happens to me). > > Say you are working on a score with multiple parts (like an orchestra) > and you need to insert some measures into all the parts somewhere in > the middle of

Re: Broken articulation output

2024-09-28 Thread mskala
On Sat, 28 Sep 2024, Aaron Laws wrote: > \version "2.24.4" \include "articulate.ly" \articulate { c'4. e'8 g'2 | c''1 > } > > has the absurd output: > > image.png > > The compilation output doesn't report any errors. Is this (added time) > expected? Yes. There isn't really any "added time." If

Re: How do you insert measures into scores with many parts?

2024-09-28 Thread Kieren MacMillan
Hi Saul, > Unfortunately, this just is a significant workflow shortcoming of composing > in Lilypond. Have you looked at \alignTo? https://lists.gnu.org/archive/html/lilypond-user/2022-11/msg00293.html Hope that helps! Kieren. __ My work day may look

Broken articulation output

2024-09-28 Thread Aaron Laws
The following score \version "2.24.4" \include "articulate.ly" \articulate { c'4. e'8 g'2 | c''1 } has the absurd output: [image: image.png] The compilation output doesn't report any errors. Is this (added time) expected?