Re: Using SVG backend to implement point-and-click to braille location

2015-04-01 Thread Martin Tarenskeen
On Wed, 1 Apr 2015, Mario Lang wrote: This is, rather amazing. Becuase it will ultimately allow blind and sighted musicians to work together. A sighted user can just use the mouse to "point" at a specific note, and the blind user will be able to see the same note, but in a totally different

Re: Messiaen-style ties?

2015-04-01 Thread Pierre Perol-Schneider
Hi Trevor et All, How about: \version "2.18.2" extendRT = #(define-music-function (parser location arg-extend) (number?) #{ \once \override LaissezVibrerTie.X-extent = #'(0 . 0) \once \override LaissezVibrerTie.details.note-head-gap = #(/ arg-extend -1) \once \override Laisse

Re: parts for natural horns and trumpets

2015-04-01 Thread Urs Liska
Am 01.04.2015 um 04:48 schrieb Craig Dabelstein: Hi Lilyponders, Does anyone have a successful way of writing parts for natural horns and trumpets that would change crooks (and therefore transpositions) several times during a part. There would be a global file holding the many key and time

Re: Messiaen-style ties?

2015-04-01 Thread Pierre Perol-Schneider
... or even: \version "2.18.2" repeatTieExtend = #(define-music-function (parser location arg-repeat-tie-extend) (number?) #{ -\tweak X-extent #'(0 . 0) -\tweak details.note-head-gap #(/ arg-repeat-tie-extend -1) -\tweak extra-offset #(cons (/ arg-repeat-tie-exte

Re: Messiaen-style ties?

2015-04-01 Thread Pierre Perol-Schneider
Oops, X-extent forgotten, so here again: repeatTieExtend = #(define-music-function (parser location arg-repeat-tie-extend) (number?) #{ -\tweak X-extent #(cons (/ (+ arg-repeat-tie-extend 4) -1) 0) -\tweak details.note-head-gap #(/ arg-repeat-tie-extend -1) -\tweak

Re: Text above fermata

2015-04-01 Thread Kieren MacMillan
Hi Craig, >> Does anybody know how I can get the text in this example to be above the >> fermata instead of below? This is the way I would do it: gpferm = \markup \override #'(baseline-skip . 2.2) \center-column { \normal-text \bold "G.P." \musicglyph #"scripts.ufermata" } \score { \new Staf

Reading a property

2015-04-01 Thread Klaus Blum
Dear LilyPond fellows, how can I read a property? For example, after having applied \override HorizontalBracket.line-thickness = #0.5 is there an easy way to access that value? I know that it will work like this: colorSpan = #(define-music-function (parser location y-lower y-upper color)

Re: Defining event classes

2015-04-01 Thread David Nalesnik
On Tue, Mar 31, 2015 at 7:19 PM, David Nalesnik wrote: > > > I'm not finding that general-music is actually _used_, though it appears > with many many events in scm/define-music-types.scm. From what I can tell, > its uses are ancient. Possibly it should be removed from the codebase > altogether

change notehead side

2015-04-01 Thread Stephen MacNeil
I would like to change the notehead side -- I would prefer it default however a workaround is cool too. I noticed you can do it with dotted \override Staff.NoteCollision.prefer-dotted-right = ##f however I would like to do it with none dotted - something like \override Staff.NoteCollision.prefe

Re: change notehead side

2015-04-01 Thread David Nalesnik
Hi Stephen, On Wed, Apr 1, 2015 at 10:48 AM, Stephen MacNeil wrote: > I would like to change the notehead side -- I would prefer it default > however a workaround is cool too. > A workaround is all that's possible, as far as I can tell. You can use this snippet: http://lsr.di.unimi.it/LSR/Ite

Re: Reading a property

2015-04-01 Thread David Nalesnik
Hi Klaus, On Wed, Apr 1, 2015 at 9:13 AM, Klaus Blum wrote: > Dear LilyPond fellows, > > how can I read a property? > For example, after having applied > \override HorizontalBracket.line-thickness = #0.5 > is there an easy way to access that value? > > I know that it will work like this: > > col

Re: Reading a property

2015-04-01 Thread David Nalesnik
Sorry, hit the wrong button... On Wed, Apr 1, 2015 at 9:13 AM, Klaus Blum wrote: > Dear LilyPond fellows, > > how can I read a property? > For example, after having applied > \override HorizontalBracket.line-thickness = #0.5 > is there an easy way to access that value? > > I know that it will wo

Re: Messiaen-style ties?

2015-04-01 Thread Trevor Bača
Hi Pierre & David, These solutions are quite amazing, and I've been able to make both work perfectly for what I want. I'll document my understanding below for later readers of thread trying to finesse results. First I had to go read about the \shape command from David's solution ... http://lily

Re: Reading a property

2015-04-01 Thread Klaus Blum
Hi David, thanks for coming onboard. First of all, I've got a function that returns a stencil: #(define (makeDeltaSpan y-l-lower y-l-upper y-r-lower y-r-upper frame-color fill-color stepLeft stepRight open-on-bottom open-on-top thick pad X-ext-param open-on-left open-on-right radius

Re: Text above fermata

2015-04-01 Thread Craig Dabelstein
Thankyou everyone. You guys never let me down! On Wed, 1 Apr 2015 at 21:18 Kieren MacMillan wrote: > Hi Craig, > > >> Does anybody know how I can get the text in this example to be above the > >> fermata instead of below? > > This is the way I would do it: > > gpferm = \markup \override #'(basel