lilypond-user
[Top][All Lists]
Advanced

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

Re: opus conflict


From: Thomas Morley
Subject: Re: opus conflict
Date: Sun, 30 Apr 2017 19:09:44 +0200

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



reply via email to

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