lilypond-user
[Top][All Lists]
Advanced

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

Re:


From: Xavier Scheuer
Subject: Re:
Date: Mon, 15 Nov 2010 01:28:28 +0100

On 14/11/2010, Paul Thompson <address@hidden> wrote:
>
> I am having an error in using lilypond 2.13.38
>
> Here is my input file:
>
> \book {
>   \bookOutputName "Romanze"
>     a a a
> }
> \book {
>   \bookOutputName "Menuetto"
> \score{
>    a a a
> }
> }
>
> I am getting a persistent error:
>
> testa.ly:3:4: error: syntax error, unexpected NOTENAME_PITCH
>
>
> I am inexperienced, but have gone thru the manual.

Yes, I have noticed that *sometimes* LilyPond does not understand
"shortcuted" structures.
Just add explicit instanciation for Staff and it is OK.

\book {
  \bookOutputName "Romanze"
  \new Staff { a a a }
}
\book {
  \bookOutputName "Menuetto"
  \score{
    \new Staff { a a a }
  }
}

Cheers,
Xavier

-- 
Xavier Scheuer <address@hidden>



reply via email to

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