On 2019-03-01 6:57 pm, Karim Khakimov wrote:
\version "2.18.2"% don't know if it's my computer% but for some reason
this produces an error\score { c c c c }   % see attachement below for
.ly file

This is missing a set of curly braces to define the sequential music:

%%%%
\score { { c c c c } }
%%%%

The braces you did include belong to delimiting the scope of the \score block. Without the inner set, you are specifying individual pitches which cannot be parsed as valid.

Adding the inner braces allows it to be parsed as sequential music which can become a Voice and then a Staff within the \score.

-- Aaron Hill

_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond
  • Bug report Karim Khakimov
    • Re: Bug report Aaron Hill

Reply via email to