[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright inf
From: |
lilypond |
Subject: |
Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page |
Date: |
Thu, 30 Aug 2012 11:11:45 +0000 |
Comment #7 on issue 2241 by address@hidden: 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"
}
}
}
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/12
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/12
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/14
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/16
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/24
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/28
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page,
lilypond <=
- Message not available
- Re: [Lilypond-auto] Issue 2241 in lilypond: Book only puts copyright information on the first page, lilypond, 2012/08/30