Re: left pointing note heads

2015-10-01 Thread Thomas Morley
e notes to the left or the right, > which seems quite intuitive. (remember that this notation is intended to be > used by many people who have never seen, let understood, a music score. so > the simpler, the better.) > > if the note heads or the note stems should remain aligned over the

Re: left pointing note heads

2015-10-01 Thread Andrew Bernard
Hi Johan, How about this as a base to start from? Obviously you can play around with the ellipticity and shape and fill of the noteheads to your hearts content. This gives the different directions you are wanting. Andrew — snip \version "2.19.28" #(define right-pointing-notehead (lambda

Re: left pointing note heads

2015-10-01 Thread Pierre Perol-Schneider
How about : \version "2.18.2" \layout { ragged-right = ##f } #(define mydrums '((kumi-daiko default #t 0))) kumi-daiko-staff = { \override Staff.StaffSymbol.line-positions = #'( 0 ) \override Staff.BarLine.bar-extent = #'(-1.5 . 1.5) \set DrumStaff.instrumentName = #"Kumi-daiko" } %%

Re: left pointing note heads

2015-10-01 Thread Stephen MacNeil
or %% % Stem Ri = { \once \override Stem.extra-offset = #(lambda (grob) (if (eq? (ly:grob-property grob 'direction) right) '(0 . 0) '(1.168 . -.05))) % rotate head \once \override NoteHead.rotation = #'(-58 0 0) } % Done %%% { c'' \Ri c'' } Stephen

Re: left pointing note heads

2015-10-01 Thread Pierre Perol-Schneider
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

left pointing note heads

2015-09-30 Thread johan buelens
hi folks, thanks for all the comments, but words have clearly failed me in making my point, so here’s a very simple example of what i want to achieve: this of course has been typeset in lilypond, then doctored in photoshop to flip every other note horizontally. can this been done straight

Re: left pointing note heads

2015-09-30 Thread Andrew Bernard
Hi Johan, By coincidence I saw a taiko drum performance live a couple of days ago. Lilypond does not do notehead direction changes out of the box. But lilypond can be programmed to do pretty much anything. At the Lilypond Snippet Repository there is an example of how to reposition note heads

Re: left pointing note heads

2015-09-29 Thread Andrew Bernard
Hi Johan, You may also want to take a look at the range of lilypond supported percussion styles here in the Notation Reference (NR): http://lilypond.org/doc/v2.18/Documentation/notation/common-notation-for-percussion Andrew ___ lilypond-user

Re: left pointing note heads

2015-09-29 Thread Pierre Perol-Schneider
this notation is > intended to be used by many people who have never seen, let understood, a > music score. so the simpler, the better.) > > if the note heads or the note stems should remain aligned over the > staves, i don’t know yet, although i’m inclined to the latter method. >

Re: left pointing note heads

2015-09-29 Thread Andrew Bernard
Hi Johan, Here is somebody else’s Taiko notation project: http://taikosource.com/song-database/taiko-notation-a-work-in-progress/ Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: left pointing note heads

2015-09-29 Thread tisimst
ight, which seems quite intuitive. (remember that this notation is > intended to be used by many people who have never seen, let understood, a > music score. so the simpler, the better.) > > if the note heads or the note stems should remain aligned over the > staves, i don’t know yet, alt

left pointing note heads

2015-09-28 Thread johan buelens
r, the better.) if the note heads or the note stems should remain aligned over the staves, i don’t know yet, although i’m inclined to the latter method. i looked at the feta font, but found no left pointing note heads. i tried stencils, but didn’t succeed (remember i’m an absolute beginner).