Re: Slur position

2017-09-09 Thread Mario Moles
UH! Great! Thank you so match! Il 09/09/2017 10:06, David Kastrup ha scritto: Mario Moles writes: Do you know how to make this slur? Well, the input looks like a smiley parade, but it sort-of works: What is irritating, though, is that replacing "^-" with "--" will result in a complete

Re: Slur position

2017-09-09 Thread David Kastrup
Mario Moles writes: > Do you know how to make this slur? Well, the input looks like a smiley parade, but it sort-of works: \version "2.19.60" \fixed c' { \time 6/8 8^-\arpeggio b a) } What is irritating, though, is that replacing "^-" with "--" will result in a complete messup. Basicall

Re: slur position in

2014-08-14 Thread BB
limitations - obviously With \glissando one can chose a noteout of a chord - it will point to the first note in a chord group. Example: c8\2^" SL" \glissando Does not work that way with slurs - taht was the first thing I tried. Regards On 14.08.2014 16:34, Janek Warchoł wrote: 2014-08-1

Re: slur position in

2014-08-14 Thread BB
I found a lot of interesting examples at http://lsr.di.unimi.it/LSR/Search?q=slur There I found \override Slur.positions, tried it, obviously does not work with chords! \once \override Tie.control-points = #'((1 . -1) (3 . 0.6) (12.5 . 0.6) (14.5 . -1)) from http://lilypond.org/doc/v2.18/Do

Re: slur position in

2014-08-14 Thread Janek Warchoł
2014-08-14 16:29 GMT+02:00 Federico Bruni : > 2014-08-14 16:11 GMT+02:00 bb : > >> I cannot get a slur from g, to b? >> >> \version "2.18.0" >> >> #(set-global-staff-size 29) >> >> \relative c'' { >> \override Slur.positions = #'(-20 . 0) >> < d g, d >8 ^" H" (b) >> } >> >> I could not find any

Re: slur position in

2014-08-14 Thread Federico Bruni
2014-08-14 16:11 GMT+02:00 bb : > I cannot get a slur from g, to b? > > \version "2.18.0" > > #(set-global-staff-size 29) > > \relative c'' { > \override Slur.positions = #'(-20 . 0) > < d g, d >8 ^" H" (b) > } > > I could not find any solution in the internet! > Does Slur.positions really exi

Re: Slur position

2014-01-03 Thread Phil Holmes
- Original Message - From: "Shane Brandes" To: "Daniel Rosen" Cc: Sent: Friday, January 03, 2014 4:37 PM Subject: Re: Slur position It does seem a bit far on 2.18. Is this a regression? I dumped my earlier versions and therefore can't check it out at the mo

Re: Slur position

2014-01-03 Thread Shane Brandes
It does seem a bit far on 2.18. Is this a regression? I dumped my earlier versions and therefore can't check it out at the moment. Shane On Fri, Jan 3, 2014 at 10:10 AM, Daniel Rosen wrote: > Is it me, or is this slur too far away from the noteheads? > > \version "2.18.0" > \relative c''' { >

Re: Slur position : "catching" Llilypond values...

2011-02-14 Thread David Nalesnik
>> Here is my function: >> >> offsetBrokenSpanner = >> #(define-music-function (parser location name offsets) (string? pair?) >> #{ >>\overrideProperty $name #'after-line-breaking #(broken-spanner >> $offsets) >> #} >> ) >> >> #(define ((broken-spanner offsets) grob) >>(let* (

Re: Slur position : "catching" Llilypond values...

2011-02-14 Thread Nick Payne
On 15/02/11 02:02, David Nalesnik wrote: On 2/14/11, Dmytro O. Redchuk wrote: Would be great it if allows to specify which grob's positions to alter, like this: \offsetPositions #"Arpeggio" #'(-2 . 2) Hi, Dmytro -- I actually have been working on a snippet which generalizes another functio

Re: Slur position : "catching" Llilypond values...

2011-02-14 Thread Dmytro O. Redchuk
On Mon 14 Feb 2011, 09:02 David Nalesnik wrote: > On 2/14/11, Dmytro O. Redchuk wrote: > > > Would be great it if allows to specify which grob's positions to alter, like > > this: > > > > \offsetPositions #"Arpeggio" #'(-2 . 2) Oh, yes, i see --- every grob requires "it's own" function to calc in

Re: Slur position : "catching" Llilypond values...

2011-02-14 Thread David Nalesnik
On 2/14/11, Dmytro O. Redchuk wrote: > Would be great it if allows to specify which grob's positions to alter, like > this: > > \offsetPositions #"Arpeggio" #'(-2 . 2) > Hi, Dmytro -- I actually have been working on a snippet which generalizes another function -- namely, the oft-cited snippet f

Re: Slur position : "catching" Llilypond values...

2011-02-14 Thread Dmytro O. Redchuk
On Fri 11 Feb 2011, 16:25 David Nalesnik wrote: > On 2/11/11, Xavier Scheuer wrote: > > On 8 February 2011 22:56, David Nalesnik wrote: > >> > >> Hello, > >> > >> There probably is a better way to do this, but the function below > >> seems to do the trick. It adds an offset to the Y-coordinate o

Re: Slur position : "catching" Llilypond values...

2011-02-13 Thread Phil Holmes
- Original Message - From: "David Nalesnik" To: "Xavier Scheuer" Cc: "Llilypond EN" Sent: Friday, February 11, 2011 10:25 PM Subject: Re: Slur position : "catching" Llilypond values... On 2/11/11, Xavier Scheuer wrote: Could you add

Re: Slur position : "catching" Llilypond values...

2011-02-11 Thread David Nalesnik
On 2/11/11, Xavier Scheuer wrote: > On 8 February 2011 22:56, David Nalesnik wrote: >> >> Hello, >> >> There probably is a better way to do this, but the function below >> seems to do the trick. It adds an offset to the Y-coordinate of >> either or both of the slur's attachment points. Setting

Re: Slur position : "catching" Llilypond values...

2011-02-11 Thread Xavier Scheuer
On 8 February 2011 22:56, David Nalesnik wrote: > > Hello, > > There probably is a better way to do this, but the function below > seems to do the trick. It adds an offset to the Y-coordinate of > either or both of the slur's attachment points. Setting one value of > the pair to zero will leave

Re: Slur position : "catching" Llilypond values...

2011-02-07 Thread Dmytro O. Redchuk
On Mon 07 Feb 2011, 17:51 I wrote: > On Mon 07 Feb 2011, 16:32 Éditions IN NOMINE wrote: > > Well, let me explain :-) > > > > I often use \once \override Voice.Slur #'positions = #'(a . b) to adjust > > Slur position, and most of the time, I only need to modify only one of a or > > b. > > > >

Re: Slur position : "catching" Llilypond values...

2011-02-07 Thread Dmytro O. Redchuk
On Mon 07 Feb 2011, 16:32 Éditions IN NOMINE wrote: > Well, let me explain :-) > > I often use \once \override Voice.Slur #'positions = #'(a . b) to adjust Slur > position, and most of the time, I only need to modify only one of a or b. > > I'd like to be able to "catch" the default a or b valu

Re: Slur position : "catching" Llilypond values...

2011-02-07 Thread Éditions IN NOMINE
Dmytro O. Redchuk a écrit : http://lsr.dsi.unimi.it/LSR/Item?id=639 ? Sorry, i was too quick sending this. I mean that for 'positions you might want to create something similar -- function which takes a pair and adjusts 'positions for Slur. Well, your LSR snippet is a good start.