Re: instrumentName in StaffGroup

2011-01-15 Thread Jan WarchoĊ‚
2011/1/14 Reinhold Kainhofer reinh...@kainhofer.com: To be honest, I don't understand, why the Instrument_name_engraver is not added to all staff group contexts by default. It is a very simple engraver, so it would not induce much overhead. From a user's point of view, if he sets an instrument

Re: instrumentName in StaffGroup

2011-01-15 Thread Xavier Scheuer
. instrumentName of one staff group also affect (apply to) identical _nested_ staff groups. This is unexpected (at least for me, but I suppose for lambda users as well). \score { \new StaffGroup \with { instrumentName = Big } \new Staff { c'1 } \new StaffGroup

Re: instrumentName in StaffGroup

2011-01-15 Thread Marc Mouries
On 1/15/2011 4:56 AM, Xavier Scheuer wrote: On 14 January 2011 20:56, Reinhold Kainhoferreinh...@kainhofer.com wrote: To be honest, I don't understand, why the Instrument_name_engraver is not added to all staff group contexts by default. It is a very simple engraver, so it would not induce

Re: instrumentName in StaffGroup

2011-01-14 Thread Jan-Peter Voigt
Hello Frederico, I missed to reply to the list ... I don't remember, if found this in the list archive, the LSR or the docs so I don't know is there is an explicit statement. In your mentioned doc part, there's only the difference between GrandStaff and PianoStaff - the first does, the second

RE: instrumentName in StaffGroup

2011-01-14 Thread James Lowe
Hello -Original Message- From: lilypond-user-bounces+james.lowe=datacore@gnu.org [mailto:lilypond-user-bounces+james.lowe=datacore@gnu.org] On Behalf Of Jan-Peter Voigt Sent: 14 January 2011 10:20 To: Federico Bruni; lilypond-user@gnu.org Subject: Re: instrumentName

Re: instrumentName in StaffGroup

2011-01-14 Thread Federico Bruni
2011/1/14 James Lowe james.l...@datacore.com http://lilypond.org/doc/v2.13/Documentation/notation/displaying-staves#index-staff-group Scroll down you will see 'The PianoStaff is identical to a GrandStaff, except that it supports printing the instrument name directly. For details, see

Re: instrumentName in StaffGroup

2011-01-14 Thread Federico Bruni
I found the information, sorry for the noise: To add instrument names to other contexts (such as GrandStaff, ChoirStaff, or StaffGroup), Instrument_name_engraver must be added to that context. For details, see Modifying context

Re: instrumentName in StaffGroup

2011-01-14 Thread Patrick Schmidt
TabStaff an extra (unwanted) Staff group is created. You need to set the instrumentName for the StaffGroup. See below. Try: \new PianoStaff \set PianoStaff.instrumentName = #Guitar 1 \new Staff { R1 } \new TabStaff { R1 } And that's fine: I don't want to use PianoStaff for a guitar :-) Many

RE: instrumentName in StaffGroup

2011-01-14 Thread James Lowe
Hello, From: lilypond-user-bounces+james.lowe=datacore@gnu.org [mailto:lilypond-user-bounces+james.lowe=datacore@gnu.org] On Behalf Of Patrick Schmidt Sent: 14 January 2011 12:24 To: Federico Bruni Cc: James Lowe; lilypond-user@gnu.org Subject: Re: instrumentName in StaffGroup Am

Re: instrumentName in StaffGroup

2011-01-14 Thread Reinhold Kainhofer
Am Freitag, 14. Januar 2011, um 13:16:34 schrieb Federico Bruni: I found the information, sorry for the noise: To add instrument names to other contexts (such as GrandStaff, ChoirStaff, or StaffGroup), Instrument_name_engraver must be added to that context. For details, see Modifying context

Re: instrumentName in StaffGroup

2011-01-14 Thread Graham Percival
On Fri, Jan 14, 2011 at 08:56:22PM +0100, Reinhold Kainhofer wrote: To be honest, I don't understand, why the Instrument_name_engraver is not added to all staff group contexts by default. It is a very simple engraver, so it would not induce much overhead. Sounds good to me. Cheers, -

instrumentName in StaffGroup

2011-01-13 Thread Federico Bruni
I have a StaffGroup containing a Staff and a TabStaff. I'd like to vertically center the instrument name between the two staves. This doesn't work: \version 2.13.46 \new StaffGroup \set StaffGroup.instrumentName = #Guitar 1 \new Staff { R1 } \new TabStaff { R1 } Why? It seems that I