Re: Different dynamic 1st and 2nd time in a repeat.

2020-11-20 Thread Ritchie Fraser
Thanks Aaron, That  look like a really useful wrapper. I shall steal with pride and add into my snippets :-) Ritchie On 18/11/2020 04:13, Aaron Hill wrote: On 2020-11-17 4:42 pm, Ritchie Fraser wrote: Hi Mark, This wasn't quite what I was looking for, but thank you for your suggestion.

Re: Spreadsheet - Python – Ly

2020-11-20 Thread Noeck
Dear Max, what you describe sounds somewhat similar to gridly: https://github.com/openlilylib/gridly I have never been in need for such an approach. Which is why I don't know enough about gridly to describe it properly. And it is not about spreadsheets just the time/voice-segmentation sounds

Re: Spreadsheet - Python – Ly

2020-11-20 Thread Martín Rincón Botero
sorry, group_by_measure() www.martinrinconbotero.com On 20. Nov 2020, 19:22 +0100, Maximilian Marcoll , wrote: > > > > Wouldn’t you just put each measure in a separate cell, so that a cell in > > > column 227 corresponds to measure 227? Deleting the corresponding column > > > would delete the

Re: Spreadsheet - Python – Ly

2020-11-20 Thread Martín Rincón Botero
I see. Abjad has group_by_measures() as well if you’d like to go down that road. www.martinrinconbotero.com On 20. Nov 2020, 19:22 +0100, Maximilian Marcoll , wrote: > > > > Wouldn’t you just put each measure in a separate cell, so that a cell in > > > column 227 corresponds to measure 227?

Re: Spreadsheet - Python – Ly

2020-11-20 Thread Maximilian Marcoll
>> Wouldn’t you just put each measure in a separate cell, so that a cell in >> column 227 corresponds to measure 227? Deleting the corresponding column >> would delete the measure, wouldn’t it?. Or do you have a different structure >> for the Excel spreadsheet in mind? That’s exactly what I

Re: Spreadsheet - Python – Ly

2020-11-20 Thread Martín Rincón Botero
Hi Maximilian, after having failed at the beginning with abjad (it’s looking better now) I programmed some functions in Python to also be able to access instruments and measures. For measures, I made a function that simply looks for | and gives you back whatever is between | as a list. The

Re: Multi-measure rests with alternating time signatures

2020-11-20 Thread Hans Åberg
> On 20 Nov 2020, at 14:01, Maximilian Marcoll wrote: > > I’m wondering wether there is a convenient solution for the following > situation: > > Imagine an ensemble or orchestra piece has alternating time signatures, for > instance repeated 4/4 | 3/4 time signature changes. > Not multiple

Re: Spreadsheet - Python – Ly

2020-11-20 Thread Maximilian Marcoll
Hi! thank you! That looks awesome. But what do you do if you want to delete measure 227 entirely? Cheers M __ http://www.marcoll.de subscribe to newsletter > On 20 Nov 2020, at 17:39, J Martin Rushton > wrote: > > Hi Max, > >

Re: Spreadsheet - Python – Ly

2020-11-20 Thread J Martin Rushton
Hi Max, Caveat: I've not used this personally, my scores are not complex enough. One of the standard ways of handling this is to use make (https://www.gnu.org/software/make). Basically you write a makefile which tells make which files to compile and use that as the input to Lilypond. Make

Re: Multi-measure rests with alternating time signatures

2020-11-20 Thread Phil Holmes
Here's an alternative semi-automatic way (proof of concept): \new Score { << \new Staff {   \time 3/4 c''2. \time 4/4 c''1 \time 3/4 c''2. } \new Staff {   \new Voice \with {     \remove "Rest_engraver"     \consists "Completion_rest_engraver"   }   {R1*10/4} } >> } On 20/11/2020 15:45,

Spreadsheet - Python – Ly

2020-11-20 Thread Maximilian Marcoll
Hi Everyone, Over last last couple of days I have been thinking about possible ways to organize the engraving of a rather large piece (~45+ staves) in Lilypond. My problem is that the piece in question might undergo significant changes in the future, so I need access to both instrument-wise and

Re: Multi-measure rests with alternating time signatures

2020-11-20 Thread Maximilian Marcoll
Fantastic! Thank you! __ http://www.marcoll.de subscribe to newsletter > On 20 Nov 2020, at 15:30, Kieren MacMillan > wrote: > > Hi Max, > >> Sure, that would be great. But how would that be possible with the same >> music-content also

Re: Multi-measure rests with alternating time signatures

2020-11-20 Thread Maximilian Marcoll
Hi! Thank you for your response. Sure, that would be great. But how would that be possible with the same music-content also being used for the full score? Cheers, Max __ http://www.marcoll.de http://www.stock11.de > On Nov 20, 2020, at 15:12, Kieren MacMillan

Re: Multi-measure rests with alternating time signatures

2020-11-20 Thread Kieren MacMillan
Hi Max, > Sure, that would be great. But how would that be possible with the same > music-content also being used for the full score? Tags. =) Hope that helps! Kieren. Kieren MacMillan, composer (he/him/his) ‣ website: www.kierenmacmillan.info ‣ email:

Re: Multi-measure rests with alternating time signatures

2020-11-20 Thread Kieren MacMillan
Hi Max, > If for some instruments these measures only contain rests, could this somehow > be expressed with multi-measure rests? What about a measure of 4/4 and a measure of 3/4 with a spanner over it saying “12x” (or whatever)? Hope that helps! Kieren.

Multi-measure rests with alternating time signatures

2020-11-20 Thread Maximilian Marcoll
Hi Everyone, I’m wondering wether there is a convenient solution for the following situation: Imagine an ensemble or orchestra piece has alternating time signatures, for instance repeated 4/4 | 3/4 time signature changes. Not multiple 7/4 measures but actually 4/4 | 3/4 | 4/4 | 3/4 and so on.