bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lyrics in volta confuses Bar_engraver


From: Steven McDougall
Subject: lyrics in volta confuses Bar_engraver
Date: Mon, 30 Jul 2007 07:18:41 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

> I'm not top posting.

\version "2.10.25"
\paper{ ragged-right=##t }

music = \relative c'
{
  \repeat volta 2 { c d e f  }
}

words = \lyricmode { c d e f }

\score
{
  \new GrandStaff
  <<
    \new Staff = upper { \new Voice = "singer" \music }

    \new Lyrics \lyricmode
    {
      \set associatedVoice = #"singer"
      \words
    }

    \new Staff = lower \music
  >>
  
  \layout
  {
    \context { \GrandStaff \accepts "Lyrics"    }

    % LilyPond manual section 7.3 Vocal music says,
    % To make lyrics avoid barlines as well, use
    \context 
    { 
      \Lyrics 
        \consists "Bar_engraver"
        \consists "Separating_line_group_engraver"
        \override BarLine #'transparent = ##t    
    }
  }
}

% The \override BarLine suppress the ':' before the bar line,
% but it still blanks out a piece of the bar line.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]