bug-lilypond
[Top][All Lists]
Advanced

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

Re: Issue 326 in project lilypond


From: Werner LEMBERG
Subject: Re: Issue 326 in project lilypond
Date: Fri, 02 Mar 2007 07:07:51 +0100 (CET)

> > I hope you know that you can place the new context at whatever
> > vertical position using
> >
> >   \new Staff \with {alignAboveContext = ... } {...}

Hmm.  After some testing I think I've now really found a bug.  In the
code below, I get four staves instead of three -- this makes it
impossible (or very complicated) to have more than a single alias in a
line.  Ideas?

Besides this, the spacing right after the `C' in the new staff is too
tight -- if there is a spacing at all: It looks as if the glyph boxes
are directly attached...


    Werner


======================================================================


\version "2.11.20"

\paper {
  ragged-right = ##t
}

\relative c' <<
  \context Staff = "one" {
    c1 |
    << { d1 }
       \context Staff = "foo" \with { alignAboveContext = "one" }
       { g4 a } >> |
    << { e1 }
       \context Staff = "foo" \with { alignAboveContext = "one" }
       { a4 g } >> |
  }
  \context Staff = "two" {
    a1 |
    b1 |
    c1 |
  }
>>

PNG image


reply via email to

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