2017-05-06 16:18 GMT+02:00 Knute Snortum <ksnor...@gmail.com>:
> If you could, how would you distinguish it from a 6/4 measure?
>
>
> ---
> Knute Snortum
> (via Gmail)
>
> On Fri, May 5, 2017 at 9:33 AM, Lukas-Fabian Moser <l...@gmx.de> wrote:
>>
>> In a situation like
>>
>> \version "2.19.44"
>>
>> \new Staff <<
>>   \new Voice {
>>     \voiceOne b'!1
>>   }
>>   \new Voice {
>>     \voiceTwo bes'!2
>>   }
>> >>
>>
>> Lilypond puts the two accidentals first, then the to note heads side by
>> side ("flat-natural-notehead-notehead"). Is there a way to obtain the
>> ordering "flat-notehead-natural-notehead"?
>>
>> Best
>> Lukas



I've seen things like:

\version "2.19.56"

\new Staff <<
  \new Voice {
    \voiceOne
      \once \override Accidental.X-offset = -1
      b'!1
  }
  s1^\markup \halign #-0.6 \stencil #(ly:bracket X '(0 . 7)  0.1 -0.7)
  \new Voice {
    \voiceTwo
    \once \override NoteColumn.force-hshift = 2
    \once \override Accidental.X-offset = 2.6
    bes'!2
  }
>>

but it's never nice.


Cheers,
  Harm

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

Reply via email to