lilypond-user
[Top][All Lists]
Advanced

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

Re: left pointing note heads


From: Pierre Perol-Schneider
Subject: Re: left pointing note heads
Date: Wed, 30 Sep 2015 16:52:04 +0200

Hi Andrew,
You're right,

How about:

\version "2.18.2"
%%\version "2.19.27" <= or

LH = {
  \once\override NoteHead.stencil = #(lambda (grob)
            ly:note-head::print (grob-interpret-markup grob
                                  #{
                                    \markup\musicglyph #"noteheads.d2reFunk"
                                  #}))
  \once\override NoteHead.stem-attachment = #'(1 . 1)
}

RH = {
  \once\override NoteHead.stencil = #(lambda (grob)
            ly:note-head::print (grob-interpret-markup grob
                                  #{
                                    \markup\musicglyph #"noteheads.u2reFunk"
                                  #}))
   \once\override NoteHead.stem-attachment = #'(1 . 0)
}

\drums {
  \LH bd4 bd \RH bd bd
}


Cheers,
Pierre

2015-09-30 14:09 GMT+02:00 Andrew Bernard <address@hidden>:
Hi Pierre,

This looks terrible in 2.19.28 - the heads and stems are badly matched up. Do you also see this?

Image attached.

Andrew


On 29 Sep 2015, at 17:55, Pierre Perol-Schneider <address@hidden> wrote:

LH = {
  \once\override NoteHead.stencil = #(lambda (grob)
            ly:note-head::print (grob-interpret-markup grob 
                                  #{
                                    \markup\musicglyph #"noteheads.d2reFunk"
                                  #}))
}

RH = {
  \once\override NoteHead.stencil = #(lambda (grob)
            ly:note-head::print (grob-interpret-markup grob 
                                  #{
                                    \markup\musicglyph #"noteheads.u2reFunk"
                                  #}))
}

\drums {
  \LH bd4 bd \RH bd bd
}


reply via email to

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