Re: Already have music in score

2005-08-05 Thread andrew Black
Jan Nieuwenhuizen wrote: Pretty much what they say. Did you snip away part of the messages, the .ly context is missing? Exact outut is as follows - doesnt give any context : GNU LilyPond 2.4.2 Processing `error.ly' Parsing... error: Already have music in score error: This is the previous

Re: Already have music in score

2005-08-05 Thread Graham Percival
On 5-Aug-05, at 3:26 AM, andrew Black wrote: Answers get easier by providing the offending .ly snippet. Agreed. Problem was the example showing it was too complex to send. Done a bit of experiments and this does it . \version 2.4.2 \score { \context Voice = single { c c c } %

Re: Already have music in score

2005-08-05 Thread Paul Scott
Graham Percival wrote: On 5-Aug-05, at 3:26 AM, andrew Black wrote: \version 2.4.2 \score { \context Voice = single { c c c } % comment out this line and it works \context Lyrics = singleLyrics \lyricsto single { These are words } } You need to wrap these two \contexts

Already have music in score

2005-08-04 Thread andrew Black
What do the following messages mean ? error: Already have music in score error: This is the previous music (Using LilyPond 2.4.2) ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Already have music in score

2005-08-04 Thread Mats Bengtsson
is \score{ {c d e f} } or maybe \score{ \relative c' {c d e f} } or maybe mymusic = \relative c' {c d e f} \score{\mymusic} or ... /Mats andrew Black wrote: What do the following messages mean ? error: Already have music in score error: This is the previous music (Using LilyPond 2.4.2

Re: Already have music in score

2005-08-04 Thread Jan Nieuwenhuizen
andrew Black writes: What do the following messages mean ? Pretty much what they say. Did you snip away part of the messages, the .ly context is missing? error: Already have music in score Error means that something is wrong. A \score block can only contain one piece of music

Already have music in score

2005-06-12 Thread andrew Black
Hi The example below is producing error message Already have music in score. Any suggestions to what is wrong . GNU LilyPond 2.4.2 Processing `silentNoonWords.ly' Parsing... error: Already have music in score error: This is the previous music warning: Need music in a score

Re: Already have music in score

2005-06-12 Thread dax2
On Sun, 12 Jun 2005 15:53:53 +0100 andrew wrote: Any suggestions to what is wrong . I use to collate with a source which is known to work. I look forward to reading the entire section on scores in the manual. I need more templates, but it is possible to produce nice templaces from the newer

Re: Already have music in score

2005-06-12 Thread Mats Bengtsson
of the above together with an explicit statement telling what type of context should be created. For example: \new StaffGroup ... or \new Staff {...} or whatever. /Mats andrew Black wrote: Hi The example below is producing error message Already have music in score. Any suggestions to what