Re: LP 2.24.0 How to Set default colours for sectionLabel, Coda, Segno symbols

2023-03-20 Thread Laurie Savage
Thank you! I tried wading through the internals reference this morning but it was intimidating to a non programmer. I tried using \override but had no idea what arguments to pass to it . Your solution worked perfectly, and your guide to the internals reference will come in handy. Laurie Savage

Re: Multiline copyright line

2023-03-20 Thread Werner LEMBERG
> Is there a way to have a multiline copyright statement in a file? Use ``` copyright = \markup { ... } ``` to construct a multi-line entry. However, it might also be necessary to use a custom version of `oddFooterMarkup` to get good formatting; see `ly/titling-init.ly` for the original

Multiline copyright line

2023-03-20 Thread Samuel Sloniker
Hello! Is there a way to have a multiline copyright statement in a file? -Sam Sloniker

Re: LP 2.24.0 How to Set default colours for sectionLabel, Coda, Segno symbols

2023-03-20 Thread Michael Werner
Hi Laurie - On Mon, Mar 20, 2023 at 6:11 PM Laurie Savage wrote: > Good morning, > > I am preparing charts and want my Coda/Segno symbols and section labels to > all be red. I can do this via the \markup \with-color #red in each case but > is there a global default I can set in my JazzStyle.ily

LP 2.24.0 How to Set default colours for sectionLabel, Coda, Segno symbols

2023-03-20 Thread Laurie Savage
Good morning, I am preparing charts and want my Coda/Segno symbols and section labels to all be red. I can do this via the \markup \with-color #red in each case but is there a global default I can set in my JazzStyle.ily file? I have been reading the documentation but have obviously missed

Re: Change event properties before sending to engraver

2023-03-20 Thread Jean Abou Samra
Le lundi 20 mars 2023 à 20:38 +0100, Valentin Petzel a écrit : > But the point here is that while the events have to eventually be handled on > the Staff level we kind of need to "prepare" them at the Voice level to have > the correct spanner id. That is going to be problematic for following

Re: Change event properties before sending to engraver

2023-03-20 Thread Jean Abou Samra
Le lundi 20 mars 2023 à 14:19 -0600, Saul Tobin a écrit : > Is your idea to have a second engraver at the Voice level to prepare the > events? You should be able to have an engraver listen to the event and modify > it before it's listened by the Staff level engraver, as long as they are >

Re: Change event properties before sending to engraver

2023-03-20 Thread Valentin Petzel
Something like this, yes. Essentially it is necessary to handle the events at Staff level, but not to loose the information about which Voice context we are coming from, some way or another way. I think this should be possible with the whole dispatcher-broadcasting system, but I do not know

Re: Change event properties before sending to engraver

2023-03-20 Thread Saul Tobin
Is your idea to have a second engraver at the Voice level to prepare the events? You should be able to have an engraver listen to the event and modify it before it's listened by the Staff level engraver, as long as they are \consist'ed in the right order. On Mon, Mar 20, 2023, 1:40 PM Valentin

Change event properties before sending to engraver

2023-03-20 Thread Valentin Petzel
Hello, this is a more technical question targeted to the more experienced members of the list. One thing that is stupidly hard to do in Lilypond is getting Slurs, Ties and other spanners to work between different Voices. The general approach is to use hidden notes, which is not at all nice to

Re: oddHeaderMarkup

2023-03-20 Thread Jean Abou Samra
Le dimanche 19 mars 2023 à 18:47 +0200, Dimitri Sykias a écrit : > Thanks for your answers! > I replaced (blindly, without knowing the exact syntax) \fontsize #-1 with > “\normalsize” and it worked! I cannot see why `\normalsize` would work but `\fontsize #-1` would not. Most likely, you