Re: Tagline stuck to the default one

2006-06-04 Thread Mats Bengtsson
Quoting Graham Percival <[EMAIL PROTECTED]>: ... Aha! This produces the behavior you want: \version "2.9.7" \book{ \score { \new Staff { c4 c4 } } \header { title = "tit" tagline = "tag" } } IMO, if there's only one \score in the piece, then the \header{} should

Re: Tagline stuck to the default one

2006-06-03 Thread Graham Percival
On 3-Jun-06, at 5:51 PM, Joe Neeman wrote: On Sat, 2006-06-03 at 17:32 -0700, Graham Percival wrote: Moving the header outside the \score block does work, but I'm not certain why -- as far as I understand, In the first example, the \header section belongs to the \book. In the second example,

Re: Tagline stuck to the default one

2006-06-03 Thread Joe Neeman
On Sat, 2006-06-03 at 17:32 -0700, Graham Percival wrote: > Moving the header outside the \score block does work, but I'm not > certain why -- as far as I understand, > \header{} > \score{ {music} } > > is just a shortcut for > \score{ >{music} >\header{} > } In the first example, the \h

Re: Tagline stuck to the default one

2006-06-03 Thread Graham Percival
Moving the header outside the \score block does work, but I'm not certain why -- as far as I understand, \header{} \score{ {music} } is just a shortcut for \score{ {music} \header{} } If this behavior is still present when Erik's finished his parser work, I'll ask about it again. - Graham

Re: Tagline stuck to the default one

2006-06-03 Thread Geoff Horton
Move the header block outside of the score block. On 6/3/06, Elmo Todurov <[EMAIL PROTECTED]> wrote: In my opinion, I'm doing everything correctly. However, the tagline is the default. The code is here. I'm sure it's correct. \paper { printallheaders = ##t } \layout {} \version "2.9.7" \score {

Tagline stuck to the default one

2006-06-03 Thread Elmo Todurov
In my opinion, I'm doing everything correctly. However, the tagline is the default. The code is here. I'm sure it's correct. \paper { printallheaders = ##t } \layout {} \version "2.9.7" \score { \new Staff { c4 c4 } \header { title = "tit" tagline = "tag" } } The title shows cor