lilypond-user
[Top][All Lists]
Advanced

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

Re: multiple headers


From: Pascal Legris
Subject: Re: multiple headers
Date: Wed, 1 Sep 2004 18:23:25 +0200

De: Pascal Legris <address@hidden>
Date: 1 septembre 2004 18:21:40 GMT+02:00
À: Jean-marc LEGRAND <address@hidden>
Objet: Rép : multiple headers

One score bloc for each part and a header bloc in each. You can modiy the presentation with LaTeX commands:

Example:
Each part header is on two line with a Title (center align and bold) and organ registration (left align and italic).


\version "2.2.6"
\include "italiano.ly"
\include "Kyrie.ly"
\include "Gloria.ly"

\header {
dedication = "Dédiée à Madame de Montmorency Laval Abbesse de l'Abbaye Royale de Montmartre"
    title = "Messe en noëls avec variations"
    subtitle = "en fa Majeur"
        subsubtitle = "Mois d'octobre 1776"
    composer = "M. BENAUT, Maitre de clavecin"
    instrument = "Orgue"
}


%%%%% Kyrie plein jeu

\score {
<<
   \context PianoStaff <<
        \context Staff = upper <<
                \override Staff.TimeSignature  #'style = #'1style
                \time 2/2
                \context Voice = one \kyriepjd
        >>
        \context Staff = lower <<
                \override Staff.TimeSignature  #'style = #'1style
                \time 2/2
                \clef bass
                \context Voice = two \kyriepjg
        >>
    >>
>>
\header { piece = " \\huge \\begin{center} \\textbf{Kyrie} \\\* \\end{center} \\Large \\textit{plein Jeu}" }
    \paper {}
}

%%% Noel flamand Grand Jeu

\score {
<<
   \context PianoStaff <<
        \context Staff = upper <<
                \context Voice = one \apply #unfold-repeats \noelfldgjd
        >>
        \context Staff = lower <<
                \clef bass
                \context Voice = two \apply #unfold-repeats \noelfldgjg
        >>
    >>
>>
\header { piece = "\\huge \\begin{center} \\textbf{Noel flamand} \\\* \\end{center} \\Large \\textit{Grand jeu}" }
        \paper {}
}

...

Le 1 sept. 04, à 17:19, Jean-marc LEGRAND a écrit :





Hi list !

I'm using Lily 2.0.1 on WinXP.

I've structured a four parts piece same as the orchestral example in Lilypond book, so that I can
extract parts very easely.
The problem is that the whole piece is divided into several pieces which has each a name.

My script has this shape :

...







reply via email to

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