Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-27 Thread Kieren MacMillan
Hi Mark, > You can just use \omit directly as a tweak: > c1-\omit^\fermata _\espressivo Ooh! Although I won't use that in most cases (because it mixes presentation and content), that's a really nice tip to know. Thanks, Kieren.

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-27 Thread Mark Knoop
At 20:11 on 26 Dec 2021, Valentin Petzel wrote: But if you want this in only one place you should consider using something like c1-\tweak stencil ##f ^\fermata _\espressivo Instead. If you want a omit like command you can do twomit = \tweak stencil ##f \etc And then c1-\twomit^\fermata

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread Kieren MacMillan
Hi Valentin, > If you want to have such overrides for large parts of a score you can > consider > this solution I created for Paolo Prete some time ago which allows to > override > grob properties using details and a key function, so you can say > \override Script.details.stencil.fermata =

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread Valentin Petzel
Hello Kieren, If you want to have such overrides for large parts of a score you can consider this solution I created for Paolo Prete some time ago which allows to override grob properties using details and a key function, so you can say \override Script.details.stencil.fermata = ##f But if you

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread Kieren MacMillan
Hi Lukas and David, Thank you so much for the code! Both do what I need, but in different ways — looking forward to using both and learning from them. Now back to speed-engraving this musical by Dec 31! ;) All the best, Kieren.

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread Lukas-Fabian Moser
Am 26.12.21 um 17:13 schrieb Lukas-Fabian Moser: Hi Kieren, Am 26.12.21 um 16:48 schrieb Kieren MacMillan: Hi all, Given \version "2.21" { \omit Script c''1^\fermata_\espressivo } obviously both Script grobs will be omitted; same, of course, with \version "2.21" \layout { \context {

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread David Kastrup
Kieren MacMillan writes: > Hi all, > > Given > > \version "2.21" > { \omit Script c''1^\fermata_\espressivo } > > obviously both Script grobs will be omitted; same, of course, with > > \version "2.21" > \layout { \context { \Score \omit Script } } > { c''1^\fermata_\espressivo } > > Is there a

Re: \omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread Lukas-Fabian Moser
Hi Kieren, Am 26.12.21 um 16:48 schrieb Kieren MacMillan: Hi all, Given \version "2.21" { \omit Script c''1^\fermata_\espressivo } obviously both Script grobs will be omitted; same, of course, with \version "2.21" \layout { \context { \Score \omit Script } } { c''1^\fermata_\espressivo }

\omit-ing a specific type of Script [globally or via edition-engraver]

2021-12-26 Thread Kieren MacMillan
Hi all, Given \version "2.21" { \omit Script c''1^\fermata_\espressivo } obviously both Script grobs will be omitted; same, of course, with \version "2.21" \layout { \context { \Score \omit Script } } { c''1^\fermata_\espressivo } Is there a way (e.g., via callback or improved \omit function