Status: Accepted
Owner: ----
Labels: Type-Other

New issue 2241 by philehol...@gmail.com: Book only puts copyright information on the first page
http://code.google.com/p/lilypond/issues/detail?id=2241

Reported by Christopher Maden:

When using multiple bookparts within a book, it would be common for each to have its own copyright. However, it only seems possible to put copyright information on the first page. When using book and bookpart, lilypond should use the relevant copyright for 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"
  }
  \bookpart {
    \score {
      \relative c' { c c c c }
      \header {
        title = "Title Bookpart 1"
      }
    }
  }
  \bookpart {
    \score {
      \relative c' { c d e f }
      \header {
        title = "Title Bookpart 2"
        copyright = "Copyright Bookpart 2"
      }
    }
  }
  \bookpart {
    \score {
      \relative c' { c d e f }
      \header {
        title = "Title Bookpart 3"
        copyright = "Copyright Bookpart 3"
      }
    }
  }
}


Attachments:
        copyright.pdf  32.9 KB


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to