Re: feature requests: scalable \shape values; (stem) for \shapeII

2020-10-11 Thread Thomas Morley
Am Mi., 7. Okt. 2020 um 10:35 Uhr schrieb Martín Rincón Botero : > > Now that we’ve been talking about \shape and \shapeII, I would like to ask if > it’s possible that values put for \shape(II) could scale according to staff > size. Whenever I have a smaller staff, whatever values work for a 20 p

Re: feature requests: scalable \shape values; (stem) for \shapeII

2020-10-11 Thread Martín Rincón Botero
Dear Thomas, sorry for not having provided examples myself of what doesn’t scale. I haven’t had the time for that yet. However, your explanation seems to be right. I definitely have to use smaller values for smaller font sizes. I was planning to collect a few examples from the viola concerto I’

Re: lilypond-user Digest, Vol 215, Issue 44

2020-10-11 Thread Andrew Bernard
Hi Klaus, Always problematical replying to people who reply to digest subject lines - the topic subject gets lost, and it confuses people and the context becomes lost. [I ban this on all the mailing lists I run - but I am horrible! :-)] Therefore I will start a new thread to reply. Andrew On S

OLL and git

2020-10-11 Thread Andrew Bernard
To all interested in OLL. as I am starting this anew, in effect, I am at the moment considering moving to Gitlab instead of Github. There is precedent for this - lilypond is there! (not that that is directly related to OLL). The current github organisation has been orphaned as far as I can see, and

Re: Tremolo slope

2020-10-11 Thread Philippe Auclair
StemTremolo is for tremolos on a single note, which are printed over the stem. Yours is just a special case of Beam, so here you go: \version "2.20.0" \score { \new Staff { \override Beam.positions = #'(-1 . 1) \repeat tremolo 16 { c'32 c'' } } } Thanks Jean. This is indeed a begin

Re: Tremolo slope

2020-10-11 Thread Jean Abou Samra
Thanks Jean. This is indeed a beginning. However, you have to change the positions each time the notes change. And and if you want to shorten the beams, it becomes really very tedious (see below)! Could it be possible to specify vertical AND horizontal positions relative to notes rather than sta

Re: OLL and git

2020-10-11 Thread Ralph Palmer
Kudos to you, Andrew! And my thanks! I have very limited experience in 1) Github; 2) Oll; and 3) programming, but I'm willing to help in any way I can. All the best, Ralph On Sun, Oct 11, 2020 at 5:19 AM Andrew Bernard wrote: > To all interested in OLL. as I am starting this anew, in effect,

Re: OLL and git

2020-10-11 Thread Freeman Gilmore
Thank you. ƒg On Sun, Oct 11, 2020 at 5:19 AM Andrew Bernard wrote: > To all interested in OLL. as I am starting this anew, in effect, I am > at the moment considering moving to Gitlab instead of Github. There is > precedent for this - lilypond is there! (not that that is directly > related to O

Re: OLL and git

2020-10-11 Thread James.Correa
Thank you Andrew for keeping OLL alive! I'm not a programmer, but as a OLL user (mainly \shapeII, notation-snippets and custom-music-fonts),I am kin to help. All the best, James --- James Correa Composer - guitarist - sound designer http://www.jamescorrea.net http://wp.ufpel.edu.br/labcomp/ Sen

grace notes spacing

2020-10-11 Thread Martín Rincón Botero
Hello all, I wanted to ask how do you deal with grace notes (not immediately after the bar line) incorrectly taking too much horizontal space from normal notes. Using \override Score.SpacingSpanner.strict-grace-spacing = ##t seems only useful when no grace notes are used immediately after the bar

Re: grace notes spacing

2020-10-11 Thread Kieren MacMillan
Hi Martín, > I wanted to ask how do you deal with grace notes (not immediately after the > bar line) incorrectly taking too much horizontal space from normal notes. Tweaks (X-extent, extra-spacing-width, etc.). Specifically: using the edition-engraver. Hope that helps! Kieren. _

Re: grace notes spacing

2020-10-11 Thread Martín Rincón Botero
Thank you for your quick answer! I’ll try that! I didn’t know the edition-engraver manages the issue. www.martinrinconbotero.com On 11. Oct 2020, 19:07 +0200, Kieren MacMillan , wrote: > Hi Martín, > > > I wanted to ask how do you deal with grace notes (not immediately after the > > bar line) i

Re: grace notes spacing

2020-10-11 Thread Kieren MacMillan
Hi Martín, > I didn’t know the edition-engraver manages the issue. That’s not exactly what I meant… =) You can adjust the spacing "inline" [p.s. Next time, send an MWE, and I’d actually show you how!], but I find it useful and helpful to put all my tweaks in an edition — then, when newer vers

Re: grace notes spacing

2020-10-11 Thread Martín Rincón Botero
That’s not exactly what I meant… =) Yes, lol, I noticed that after reading about the edition-engraver. Interestingly, the edition-engraver reminds me of Abjad's modus operandi, which I'm learning at the moment. Anyways, I couldn't make use of any of your suggestions. I couldn't figure out how to

Re: grace notes spacing

2020-10-11 Thread Kieren MacMillan
Hi Martín, > Anyways, I couldn't make use of any of your suggestions. I couldn't figure > out how to apply the mentioned tweaks. Here’s one possibility: \version "2.20.0" fixa = \tweak NoteColumn.X-offset #-3 \etc fixb = \tweak NoteColumn.X-offset #-2 \etc fixc = \tweak Accidental.X-exten

grace notes spacing

2020-10-11 Thread Jean Abou Samra
Using \override Score.SpacingSpanner.strict-grace-spacing = ##t seems only useful when no grace notes are used immediately after the bar line and no accidentals are used, which seems like a function for a very limited use case This is a known issue: https://gitlab.com/lilypond/lilypond/-/issu

Markup Between Systems

2020-10-11 Thread Marc Shepherd
Is there a way to print markup that occupies the full width of the page, and resides between two systems? I know that if there are multiple scores within the same book, a markup block can reside between two scores (or above or below any of them). I want markup that is within a score (above a syst

Re: grace notes spacing

2020-10-11 Thread Martin Neubauer
On 11/10/2020 21:26, Kieren MacMillan wrote: Note that I had to unfold the \repeat in the lower staff, in order to easily apply the tweak to the correct moment. This is one of the [many!] reasons I use the edition-engraver: you can inject the tweak at an exact moment, regardless of how the

Re: feature requests: scalable \shape values; (stem) for \shapeII

2020-10-11 Thread Martín Rincón Botero
Dear Harm, I have to run more tests, but your \shape-h function is simply excellent. Thank you! I wish this could be the default behavior of a new \reshape function. Perhaps the open issue shouldn’t be fixed for \shape: that way the folks who carefully used small values for small staves to fix

Re: grace notes spacing

2020-10-11 Thread Martín Rincón Botero
Thanks for the link Jean. 8 years old issue? Ouch! www.martinrinconbotero.com On 11. Oct 2020, 21:59 +0200, Jean Abou Samra , wrote: > > Using \override Score.SpacingSpanner.strict-grace-spacing = ##t seems > > only useful when no grace notes are used immediately after the bar > > line and no acci

OLL redux

2020-10-11 Thread Andrew Bernard
Hello All, Having made the decision that OLL is worth preserving (thank you all for your feedback), I have thrown my efforts in to setting it all up anew, with a principal aim of making it easier to use and better well known. OLL has languished somewhat in obscurity for a while, only really utiliz