Re: Help with making new Context and Engraver

2004-11-10 Thread Jan Nieuwenhuizen
Carl Sorensen writes: 1. Copied ChordNames context in ly/engraver-init.ly Modified as it seemed to make sense to me. \context { \type Engraver_group_engraver \name FretDiagram Interpreting music... warning: Cannot find or create `FretDiagram' called `uniqueContext1' Someone

Re: Help with making new Context and Engraver

2004-11-10 Thread Han-Wen Nienhuys
[EMAIL PROTECTED] writes: Carl Sorensen writes: 1. Copied ChordNames context in ly/engraver-init.ly Modified as it seemed to make sense to me. \context { \type Engraver_group_engraver \name FretDiagram Interpreting music... warning: Cannot find or create `FretDiagram'

Boxed bar numbers used as rehearsal marks

2004-11-10 Thread Christian Hitz
Hi list, in wind band music I have encountered four types of rehearsal marks: consecutive letters, consecutive numbers, bar numbers at regular intervals and bar numbers at special places. The first three types are explained in the manual. With the help of the manual I could piece together the

Re: Boxed bar numbers used as rehearsal marks

2004-11-10 Thread Mats Bengtsson
A simplified version of what you wrote can be found in http://lists.gnu.org/archive/html/lilypond-user/2004-09/msg00160.html /Mats Christian Hitz wrote: Hi list, in wind band music I have encountered four types of rehearsal marks: consecutive letters, consecutive numbers, bar numbers at

Re: Boxed bar numbers used as rehearsal marks

2004-11-10 Thread Christian Hitz
The main point of my example is that the rehearsal mark is not a consecutive number but the current bar number. Christian Am 10.11.2004 um 12:51 schrieb Mats Bengtsson: A simplified version of what you wrote can be found in http://lists.gnu.org/archive/html/lilypond-user/2004-09/msg00160.html

Re: Help with making new Context and Engraver

2004-11-10 Thread Carl Sorensen
On Wed, 2004-11-10 at 01:31, Han-Wen Nienhuys wrote: [EMAIL PROTECTED] writes: Someone (probably Score) should accept the FretDiagram engraver. (context) I changed the name of the context from FretDiagram to FretDiagrams, for consistency with ChordNames. Then I added a line to

Re: Help with making new Context and Engraver

2004-11-10 Thread Mats Bengtsson
I hope you have checked that LilyPond really reads the copy of the engraver-init.ly file that you edit (run lilypond --verbose to see the full path). /Mats Carl Sorensen wrote: On Wed, 2004-11-10 at 01:31, Han-Wen Nienhuys wrote: [EMAIL PROTECTED] writes: Someone (probably Score) should accept

Re: battle-plan for 2.5 development

2004-11-10 Thread Erik Sandberg
On Friday 05 November 2004 13.49, Han-Wen Nienhuys wrote: Hi there, with 2.4 just released, it is time to share what each of us is up to. In this post, I want to tell you about my plans for LilyPond for the coming time. I invite you all to follow this example, and post where you would like

Re: Boxed bar numbers used as rehearsal marks

2004-11-10 Thread Mats Bengtsson
Sorry, I'll learn to read some time. However, if you want boxed bar numbers, then I propose to take a look at the example bar-number-regular-interval.ly in the Tips and Tricks document, which automatically gives boxed bar numbers at regular intervals without any \mark commands in the code.

Re: Essay on Free Software

2004-11-10 Thread Werner LEMBERG
Actually, project Gutenburg [...] Gutenberg, Graham, Gutenberg :-) Werner ___ lilypond-devel mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/lilypond-devel

Re: Help with making new Context and Engraver

2004-11-10 Thread Carl Sorensen
On Wed, 2004-11-10 at 07:39, Mats Bengtsson wrote: I hope you have checked that LilyPond really reads the copy of the engraver-init.ly file that you edit (run lilypond --verbose to see the full path). /Mats Thanks, Mats. That helped me see what was going on. I was changing

Help on Item/Grob creation

2004-11-10 Thread Carl Sorensen
I've (somewhat) successfully created a FretDiagrams context, with a Fret_diagram_engraver. I can sort of make things work. Now I'd like some clarification on Items. As part of the engraver, I have the code fret_diagram_ = make_item (FretDiagram,SCM_EOL); //WHAT GOES HERE? It appears to me