Thomas,
Thank you for your reply. 
One book, several scores, i.e., a collection of pieces (named) under one opus 
name.
Attached is the code with which I am working.
Mark

-----Original Message-----
From: Thomas Morley [mailto:[email protected]] 
Sent: Sunday, April 30, 2017 10:10 AM
To: Mark Stephen Mrotek <[email protected]>
Cc: Timothy Lanfear <[email protected]>; lilypond-user <[email protected]>
Subject: Re: opus conflict

2017-04-30 18:15 GMT+02:00 Mark Stephen Mrotek <[email protected]>:
> Timothy,
>
> Thank you for your response. Your time spent writing out a solution is 
> greatly appreciate.
> I would like to have something that is consistent with the manual.
>
> Mark



Hi Mark,

defining a custom book/scoreTitleMarkup is explained in the docs, so it _is_ 
"consistent with the manual".

That said, I was musing some time over your request, tried this and that but 
never got the results you described.
In other words, please provide a minimal example, showing the structure of your 
ly-file:
Do you use multiple books?
One book but multiple bookparts?
One book(part), but multiple scores?
Where are headers in?

Look at the example below (btw it compiles, although no header is ever printed. 
"content" is never called by default).

Please change the structure to the one of your ly-file and fill the remaining 
headers with something meaningful to demonstrate the problem.

\version "2.18.2"
\header { content = "general-whatever" }

\book {
  \header { content = "1book-whatever" }
  \bookpart {
    \header { content = "1bookpart1-whatever" }
    \score {
      { c'1 }
      \header { content = "1score1.1-whatever" }
    }
    \score {
      { d'1 }
      \header { content = "1score1.2-whatever" }
    }
  }
  \bookpart {
    \header { content = "1bookpart2-whatever" }
    \score {
      { e'1 }
      \header { content = "1score2.1-whatever" }
    }
    \score {
      { f'1 }
      \header { content = "1score2.2-whatever" }
    }
  }
}

\book {
  \header { content = "2book-whatever" }
  \bookpart {
    \header { content = "2bookpart1-whatever" }
    \score {
      { g'1 }
      \header { content = "2score1.1-whatever" }
    }
    \score {
      { a'1 }
      \header { content = "2score1.2-whatever" }
    }
  }
  \bookpart {
    \header { content = "2bookpart2-whatever" }
    \score {
      { b'1 }
      \header { content = "2score2.1-whatever" }
    }
    \score {
      { c''1 }
      \header { content = "2score2.2-whatever" }
    }
  }
}

%% other books?

Cheers,
  Harm
\version "2.18.2"

\book {
  \paper {
    print-all-headers = ##t
  }
  \header {
    title = "Woodland Sketches"
    composer = "E. MacDowell"
    opus = "Op. 51"
    tagline = ##f
  }
  \score {
    \new PianoStaff <<
      \new Staff { s1 }
      \new Staff { \clef "bass" s1 }
    >>
    \header {
    title = ##f
    composer = ##f
    opus = ##f
    subtitle = "To a Wild Rose"
    }
  }
  \score {
    \new PianoStaff <<
      \new Staff { s1 }
      \new Staff { \clef "bass" s1 }
    >>
    \header {
    title = ##f
    composer = #f
    opus = ##f
    subtitle = "Wil o' the Wisp"
    }
  }
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to