I assume that you explicitly write out \score{...} in your file.
Then, you should note that the syntax is (schematically)
\score{
<music>
<optional layout>
<optional midi>
<optional header>
}
where <music> should be a musical expression, i.e.
- a single note
or
- a sequence of notes/musical expressions : { c d e f }
or
- a set of simultaneous notes/musical expression: << {c d e f} c1 >>
or ...
In other words, if you do
\score{
c d e f
}
you get the described error message since you have more then one
musical expression at the top level of the \score{...} block.
The correct version 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)
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user
--
=============================================
Mats Bengtsson
Signal Processing
Signals, Sensors and Systems
Royal Institute of Technology
SE-100 44 STOCKHOLM
Sweden
Phone: (+46) 8 790 8463
Fax: (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=============================================
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user