Re: defining custom note heads

2018-07-27 Thread rodrigo
I was searching how to do the same thing and found this thread. I know this is an old post, but following the example of Lilypond documentation for using numbers instead of note names, I created the following snippet to show custom note names: #(define Note_name_engraver_pt (make-engraver

Re: Custom note heads

2017-12-18 Thread Gianmaria Lari
On 18 December 2017 at 10:49, Thomas Morley wrote: > 2017-12-17 23:51 GMT+01:00 Gianmaria Lari : > > Does exist any english resource about the circus-note-heads? A minimum > code > > example? > > > > Thank you, g. > > > > Attached to this post >

Re: Custom note heads

2017-12-18 Thread Thomas Morley
2017-12-17 23:51 GMT+01:00 Gianmaria Lari : > Does exist any english resource about the circus-note-heads? A minimum code > example? > > Thank you, g. > Attached to this post >> https://archiv.lilypondforum.de/index.php/topic,1432.msg7908.html#msg7908 you'll find the

Re: Custom note heads

2017-12-17 Thread Gianmaria Lari
Does exist any english resource about the circus-note-heads? A minimum code example? Thank you, g. On 17 December 2017 at 11:06, Thomas Morley wrote: > 2017-12-17 9:42 GMT+01:00 Helge Kruse : > > Hi Andrew, > > > > Am 17.12.2017 um 00:55 schrieb

Re: Custom note heads

2017-12-17 Thread Helge Kruse
Am 17.12.2017 um 11:06 schrieb Thomas Morley: > Some time ago Torsten (original author of the lily-jazz-font) created > "circus"-note-heads. > https://archiv.lilypondforum.de/index.php/topic,1432.msg7908.html#msg7908 > That is exactly the approach that is currently used for that boy who's

Re: Custom note heads

2017-12-17 Thread Thomas Morley
2017-12-17 9:42 GMT+01:00 Helge Kruse : > Hi Andrew, > > Am 17.12.2017 um 00:55 schrieb Andrew Bernard: >> Hi Helge, >> >> What sort of shapes do you want? Can you supply an illustration? [A MGE - >> minimal graphic example!] > I am not sure that this is as minimal as

Re: Custom note heads

2017-12-16 Thread Andrew Bernard
Hi Helge, What sort of shapes do you want? Can you supply an illustration? [A MGE - minimal graphic example!] You can use graphic files, or you can write Scheme to generate custom postscript paths. The latter can be very complex, but is of course very powerful. or you can use path construction

Custom note heads

2017-12-16 Thread Helge Kruse
Hello, I've been asked to write some scores with custom note heads. These heads are designed for beginners. I know that the Emmentaler font contains some special heads but I don't know how to add new shapes. I found this question at Stackoverflow https://stackoverflow.com/questions/47341754

Re: Custom note heads in multi-staff documents

2011-10-07 Thread m...@apollinemike.com
On Sep 21, 2011, at 8:12 AM, m...@apollinemike.com wrote: On Sep 21, 2011, at 1:53 AM, Trevor Daniels wrote: m...@apollinemike.com Tuesday, September 20, 2011 8:31 PM I'm working on a piece that uses a fair bit of spoken text. Does anyone have any suggestions as to: (1) A better

Re: Custom note heads in multi-staff documents

2011-10-07 Thread m...@apollinemike.com
On Oct 7, 2011, at 2:04 PM, m...@apollinemike.com wrote: On Sep 21, 2011, at 8:12 AM, m...@apollinemike.com wrote: On Sep 21, 2011, at 1:53 AM, Trevor Daniels wrote: m...@apollinemike.com Tuesday, September 20, 2011 8:31 PM I'm working on a piece that uses a fair bit of spoken text.

Re: Custom note heads in multi-staff documents

2011-09-21 Thread m...@apollinemike.com
On Sep 21, 2011, at 1:53 AM, Trevor Daniels wrote: m...@apollinemike.com Tuesday, September 20, 2011 8:31 PM I'm working on a piece that uses a fair bit of spoken text. Does anyone have any suggestions as to: (1) A better way to do this; and/or (2) If there is no better way, how to

Custom note heads in multi-staff documents

2011-09-20 Thread m...@apollinemike.com
Hey all, I'm working on a piece that uses a fair bit of spoken text. The best solution I've found so far to typeset X amount of spoken text in measure Y is : \version 2.14.0 textnote = #(define-music-function (parser location music marky) (ly:music? markup?) #{ \once \override NoteHead

Re: Custom note heads in multi-staff documents

2011-09-20 Thread Trevor Daniels
m...@apollinemike.com Tuesday, September 20, 2011 8:31 PM I'm working on a piece that uses a fair bit of spoken text. Does anyone have any suggestions as to: (1) A better way to do this; and/or (2) If there is no better way, how to fix the horizontal spacing problem above? Mike, this

Re: defining custom note heads

2008-07-07 Thread Eric Knapp
Hello, I'm trying to get the second option below to work. This is one where you use markup commands to create the notehead. I can't get the syntax right, could you also provide an example of that? Thanks, -Eric On Tue, Jun 3, 2008 at 10:20 AM, v!ictor [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: defining custom note heads

2008-07-07 Thread James E. Bailey
On Tue, Jun 3, 2008 at 10:20 AM, v!ictor [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello Brian, There are two things you need to do to create arbitrary noteheads from within lilypond: 1. change the NoteHead stencil to the text interface: \once \override NoteHead #'stencil =

Re: defining custom note heads

2008-07-07 Thread Eric Knapp
I have it working when you define glyphs, like this: headCircle = {\once \override NoteHead #'stencil = #ly:text-interface::print \once \override NoteHead #'text = #(markup #:musicglyph scripts.flageolet ) } What I can't get to work is what Victor mentioned but didn't give and

Re: defining custom note heads

2008-07-07 Thread James E. Bailey
On Mon, Jul 7, 2008 at 12:09 PM, James E. Bailey [EMAIL PROTECTED] wrote: On Tue, Jun 3, 2008 at 10:20 AM, v!ictor [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello Brian, There are two things you need to do to create arbitrary noteheads from within lilypond: 1. change the NoteHead

Re: defining custom note heads

2008-07-07 Thread V!ctor Adán
Hello Eric, here are a few more examples. The first (headCircle) is the one I had given before. It just calls musicgryph inside a markup. The second (headTriW) just draws a triangle. Notice how you can set the size with the fontsize command. The third (headXinD) combines (with the combine

Re: defining custom note heads

2008-07-07 Thread Eric Knapp
Thanks, Victor! I see the correct syntax now and I have it working. This is really great, I've been trying to do this for a long time. -Eric On Mon, Jul 7, 2008 at 1:23 PM, V!ctor Adán [EMAIL PROTECTED] wrote: Hello Eric, here are a few more examples. The first (headCircle) is the one I had

Re: defining custom note heads

2008-07-07 Thread Eric Knapp
I have one more piece of the puzzle to solve. How do you translate this markup command into scheme? \draw-line #'(4 . 4) Some of the markup commands call for pairs of numbers. I can't find any docs for how the pairs are coded in scheme. Thanks, -Eric On Mon, Jul 7, 2008 at 1:31 PM, Eric

Re: defining custom note heads

2008-07-07 Thread Neil Puttock
Hi Eric, 2008/7/7 Eric Knapp [EMAIL PROTECTED]: I have one more piece of the puzzle to solve. How do you translate this markup command into scheme? \draw-line #'(4 . 4) #:draw-line '(4 . 4) or #:draw-line (cons 4 4) Some of the markup commands call for pairs of numbers. I can't find any

Re: defining custom note heads

2008-07-07 Thread Eric Knapp
Thank you, Neil. That is a very good point and I'm now switching to standard \markup usage. An thanks to everyone who chimed in here. I have been trying to develop a way to notate for my instrument, the Chapman Stick, for a long time. I really made a big leap today. -Eric On Mon, Jul 7, 2008 at

Re: defining custom note heads

2008-06-03 Thread v!ictor [EMAIL PROTECTED]
PROTECTED] wrote: is there a way to define or import custom note heads? i'm interested in using specific symbols to indicate rhythmic notation in hand drumming. a picture of the symbols that i'd like to use for note heads is attached. sadly this image wasn't created in lilypond, but i figure

Re: defining custom note heads

2008-06-03 Thread Valentin Villenave
2008/6/3 v!ictor [EMAIL PROTECTED] [EMAIL PROTECTED]: There are two things you need to do to create arbitrary noteheads from within lilypond: Thanks Victor (nice to see you again :-) I have added your example to the LSR: http://lsr.dsi.unimi.it/LSR/Item?id=475 Your workaround with the

Re: defining custom note heads

2008-06-03 Thread v!ctor [EMAIL PROTECTED]
Hello Valentin, Thanks Victor (nice to see you again :-) you too! I have added your example to the LSR: http://lsr.dsi.unimi.it/LSR/Item?id=475 excellent! Your workaround with the tuplets (on the other thread) is really nice, feel free to add it to the LSR if you want (I'd have done

defining custom note heads

2008-05-23 Thread Brian Kidd
is there a way to define or import custom note heads? i'm interested in using specific symbols to indicate rhythmic notation in hand drumming. a picture of the symbols that i'd like to use for note heads is attached. sadly this image wasn't created in lilypond, but i figure it ought