bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bug report


From: Aaron Hill
Subject: Re: Bug report
Date: Fri, 01 Mar 2019 21:00:47 -0800
User-agent: Roundcube Webmail/1.3.8

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]