lilypond-user
[Top][All Lists]
Advanced

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

Re: Multiline copyright line


From: Jean Abou Samra
Subject: Re: Multiline copyright line
Date: Tue, 21 Mar 2023 17:02:16 +0100
User-agent: Evolution 3.46.4 (3.46.4-1.fc37)

Le mardi 21 mars 2023 à 09:49 -0600, Abraham Lee a écrit : Note that each line should be a single string, as I've shown, or placed within curly braces if you need to do markup functions within each line.

Note the difference between

\version "2.24.1"

\header {
  copyright = \markup { 
    \override #'(baseline-skip . 2)
    \center-column { 
      "Copyright 2023 by John Doe"
      { Making copies for non-commercial use is permitted }
      "www.johndoemusic.com"
    }
  }
}

{ c' }

and

\version "2.24.1"

\header {
  copyright = \markup { 
    \override #'(baseline-skip . 2)
    \center-column { 
      "Copyright 2023 by John Doe"
      \line { Making copies for non-commercial use is permitted }
      "www.johndoemusic.com"
    }
  }
}

{ c' }

(more on that here).

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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