Charles Gran wrote:
> Lilypond 2.10.33 doesn't accept this:
> 
> \header {
>     copyright = "\markup { \column{
>          \line{ Verse 2. }
>          \line{ All the children laughed and played }
>          \line{ To see a lamb at school. }
>          }"
> }


You've got the quotes at the wrong place. \markup itself returns a music
expression, as far as I understand, and should not be interpreted as a
string. In contrast, the arguments of the \line command aren't commands
but strings to be quoted.
And, by the way, you forgot one closing bracket.

\header {
    copyright = \markup { \column{
         \line{ "Verse 2." }
         \line{ "All the children laughed and played" }
         \line{ "To see a lamb at school." }
         }
    }
}

should work fine.


Alexander


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to