Re: Hairpin to the last bar line

2014-01-26 Thread Eluze
bsolutely correct - the confusion may have come from the fact that to-barline = ##t usually stops the hairpin at the bar line before the last note... and obviously it is the bar line before the last (null-)event. thanks for clarifying! Eluze -- View this message i

Re: Hairpin to the last bar line

2014-01-26 Thread Paul Scott
On Sun, Jan 26, 2014 at 12:23:10PM +0100, Karol Majewski wrote: > Hi! Sometimes I want my hairpin run to the end of the piece (last bar line). > > Attempt 1: > > { > \override Hairpin #'to-barline = ##f > c'1~ \< > c'1 \! \bar "|." > } Why do you set Hairpin #'to-barline = ##f if you want

Re: Hairpin to the last bar line

2014-01-26 Thread Karol Majewski
One thing I noticed is that when Hairpin.to-barline is set to ##t then there are no errors: { \override Hairpin.to-barline = ##t c'1 \< c'1 <> \! \bar "||" } The same thing happens with DynamicTextSpanner. If you set \override DynamicTextSpanner.to-barline = ##t then everything is fine: {

Re: Hairpin to the last bar line

2014-01-26 Thread Eluze
at does this mean? did you search for the possible reasons of this error (bug list/tracker)? is there an override/setting missing? is it a bug? Eluze -- View this message in context: http://lilypond.1069038.n5.nabble.com/Hairpin-to-the-last-bar-line-tp158475p158490.html Sent from the User m

Re: Hairpin to the last bar line

2014-01-26 Thread Karol Majewski
Well, as I said, it's not clear on which beat you have to put \! here to get the proper length of hairpin. You could do: { c'1~ \< << c'1 { s4*3 s4 \! } >> \bar "|." } or { c'1~ \< << c'1 { s4*3 s8 s8 \! } >> \bar "|." } or { c'1~ \< << c'1 { s4*3 s16*3 s16 \! } >> \bar "|." } e

Re: Hairpin to the last bar line

2014-01-26 Thread Phil Holmes
- Original Message - From: "Karol Majewski" To: "Eluze" Cc: "lilypond-user" Sent: Sunday, January 26, 2014 1:58 PM Subject: Re: Hairpin to the last bar line { \override Hairpin.to-barline = ##f c'1 \< c'1 <> \! \bar "||&

Re: Hairpin to the last bar line

2014-01-26 Thread Karol Majewski
> { > \override Hairpin.to-barline = ##f > c'1 \< c'1 <> \! \bar "||" > } > this draws the hairpin to the bar line though there are error messages. Yes... using s1*0 also gives error messages. This is really frustrating... ___ lilypond-user mai

Re: Hairpin to the last bar line

2014-01-26 Thread Eluze
\override Hairpin.to-barline = ##f c'1 \< c'1 *<>* \! \bar "||" } this draws the hairpin to the bar line though there are error messages. Eluze -- View this message in context: http://lilypond.1069038.n5.nabble.com/Hairpin-to

Hairpin to the last bar line

2014-01-26 Thread Karol Majewski
Hi! Sometimes I want my hairpin run to the end of the piece (last bar line). Attempt 1: { \override Hairpin #'to-barline = ##f c'1~ \< c'1 \! \bar "|." } This of course doesn't work. Attempt 2: { \override Hairpin #'to-barline = ##f c'1~ \< << c'1 { s4*3 s4 \! } >> \bar "|." or m