Re: Re: Long syllable vs. span bar

2018-01-19 Thread Simon Albrecht




> Simon Albrecht wrote:
> 
> > LilyPond, however, distorts spacing to place the span bar after the
> > syllable, and I can’t think of an override to change that. 
> 
> There were two solutions here ...
> http://lists.gnu.org/archive/html/lilypond-user/2015-08/msg00595.html
> 
> 
> Cheers,
> Robin

Oh my, that's embarrassing... Thanks for digging it up. I'm terrible at 
searching archives.

Best, Simon


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Long syllable vs. span bar

2018-01-19 Thread Malte Meyn



Am 19.01.2018 um 17:29 schrieb Torsten Hämmerle:

Probably the easiest way to achieve this is just to use *ChoirStaff* and add
the Span_bar_engraver to get the bar lines.
That way, Lyrics will nonchalantly cross the bar lines as if they weren't
there and by setting the whiteout property, you're there.
Nice. Maybe one should \override Lyrics.LyricText.layer and 
ChoirStaff.SpanBar.layer so that ties etc. aren’t covered by the whiteout.


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Long syllable vs. span bar

2018-01-19 Thread Robin Bannister

Simon Albrecht wrote:


LilyPond, however, distorts spacing to place the span bar after the
syllable, and I can’t think of an override to change that. 


There were two solutions here ...
http://lists.gnu.org/archive/html/lilypond-user/2015-08/msg00595.html


Cheers,
Robin

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Long syllable vs. span bar

2018-01-19 Thread Torsten Hämmerle
Hi Simon,

Probably the easiest way to achieve this is just to use *ChoirStaff* and add
the Span_bar_engraver to get the bar lines.
That way, Lyrics will nonchalantly cross the bar lines as if they weren't
there and by setting the whiteout property, you're there.

I've just adapted your original coding to your needs:

\version "2.19.80" 

\paper { 
   line-width = 110 
   indent = 0 
} 

\score { 
   \new ChoirStaff \with { \consists "Span_bar_engraver" } << 
 { 4 4 4 4~ 4 8 8 4 4~ 4 8 8 2 } 
 \addlyrics { 
   \override LyricText.whiteout = ##t
   a ver -- y looong __ syl -- la -- ble, 
   looong __ syl -- la -- ble 
 } 
 { 1 1 1 } 
   >> 
} 


HTH,
Torsten




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user