lilypond-user
[Top][All Lists]
Advanced

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

RE: opus conflict


From: Mark Stephen Mrotek
Subject: RE: opus conflict
Date: Sun, 30 Apr 2017 10:16:59 -0700

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:address@hidden 
Sent: Sunday, April 30, 2017 10:10 AM
To: Mark Stephen Mrotek <address@hidden>
Cc: Timothy Lanfear <address@hidden>; lilypond-user <address@hidden>
Subject: Re: opus conflict

2017-04-30 18:15 GMT+02:00 Mark Stephen Mrotek <address@hidden>:
> 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

Attachment: opus.ly
Description: Text Data


reply via email to

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