Comment #7 on issue 2241 by [email protected]: Book only puts copyright information on the first page
http://code.google.com/p/lilypond/issues/detail?id=2241

Ah, yes, that's the correct behavior. The tagline and the copyright are NOT taken from the score's header block (there can be multiple scores on a page...), but from the bookpart.

There is no tagline, because each bookpart only has one page. If you add page breaks, you'll get the tagline on the last page of each bookpart:

\version "2.14.2"
#(set-default-paper-size "letter")
\paper {
  print-all-headers = ##t
}
\book {
  \header {
    title = "LilyPond Copyright Test Main Title"
    copyright = "Copyright for first score"
    tagline = "Tagline 1"
  }
  \bookpart {
    \score {
      \relative c' { c2 c \pageBreak c c }
      \header {
        title = "Title Bookpart 1"
      }
    }
  }
  \bookpart {
    \score {
      \relative c' { c2 d \pageBreak e f }
      \header {
        title = "Title Bookpart 2"
      }
    }
    \header {
        copyright = "Copyright Bookpart 2"
        tagline = "Tagline 2"
    }
  }
  \bookpart {
    \score {
      \relative c' { c2 d \pageBreak e f }
      \header {
        title = "Title Bookpart 3"
      }
    }
    \header {
        copyright = "Copyright Bookpart 3"
        tagline = "Tagline 3"
    }
  }
}



Reply via email to