Re: need a header in the middle of a page

2010-09-25 Thread Xavier Scheuer
On 25 September 2010 02:25, Michael Dykes thedoctor81...@gmail.com wrote:

 Thanks, Xavier.

You're welcome.  :)


 The only thing I wish I could see differently, is the 'stanzas' printed
 straight across the page. Is that possible? If not, then I
 am very well satisfied with what it looks like. Thanks again.

What do you mean by straight across the page (my English-to-French
dictionary does not help me to see what you want)?

Have you had a look at the Notation Reference manual, section
2.1.3 Stanzas, to see if what you want is not there?
http://lilypond.org/doc/v2.13/Documentation/notation/stanzas.html#printing-stanzas-at-the-end

Cheers,
Xavier

--
Xavier Scheuer x.sche...@gmail.com

___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


need a header in the middle of a page

2010-09-24 Thread Michael Dykes
Hullo all. I am doing some more of my traditional Orthodox Chant music, and
I have two systems of music representing 2 diff Prokeimena (psalm verses
chanted before the Epistle Reading). Above the second system, I need an
additional header (in the style of the first header, same font, size, etc.)
in order to let people know what the second hymn is. How do I accomplish
this in Lilypond? The second header is: *Prokeimenon for an Hierarch.*

Additionally, I need to add the psalm verses below each system: for the 1st
system it is: *Rejoice in the Lord, ye righteous; praise becometh the
upright. *Then for the 2nd system it is: *Hear these things, all ye nations;
give heed, all ye that dwell in the world.*

I need a bit of help in these regards, plz. Thanks. A file of what I have
tried to do is attached already. Thanks again. Also, now it seems that both
of the Prokeimena have become ``fused'' together,  I need them on separate
systems, i.e. where the first double bar is, that needs to be the end of the
1st system, and then should start another system, preferably w/ enough space
in between for the psalm verses I mentioned above,  the next header. Thanks
again.
-- 
In Christ,
Michael D
\version 2.12.2
\include english.ly
\include gregorian.ly

\header {
  title = Octoëchos ~ Hymns of the Resurrection
  subtitle = Prokeimenon ~ Tone 1
  composer = Divine Liturgy
  poet = Znamenny Chant
}

global = {
  \key f \major
  \time 7/4
  \override Staff.TimeSignature #'stencil = ##f
  \override Staff.BarLine #'stencil = ##f
}
move = { \bar  \break }
soprano = \relative c'' {
  \global
  % Music follows here.
  f,4 f f f f g a2 a4 a a2 \divisioMaxima
  a2 g4(f g2) f4(a) a g g8(f e4 f e) d2 c1 \finalis
  
  f4 f2 f4 g a2 a \divisioMaxima
  a4 a g f g2 f4(a) a g g8(f e4) f e d2 c1 \finalis
}

alto = \relative c' {
  \global
  % Music follows here.
  f4 f f f f c f2 f4 f f2 \divisioMaxima
  f2 c1 f2 f4 c c2(f4 c4) d2 c,1 \finalis
  
  f4 f2 f4 f f2 f \divisioMaxima
  f4 f c c c2 f f4 c c2 f4 c d2 c1 \finalis
}

tenor = \relative c' {
  \global
  % Music follows here.
  f,4 f f f f g a2 a4 a a2 \divisioMaxima
  a2 g4(f g2) f4(a) a g g8(f e4 f e) d2 c1 \finalis
  
  f4 f2 f4 g a2 a \divisioMaxima
  a4 a g f g2 f4(a) a g g8(f e4) f e d2 c1 \finalis
}

bass = \relative c {
  \global
  % Music follows here.
  f4 f f f f c f2 f4 f f2 \divisioMaxima
  f2 c1 f2 f4 c c2(f4 c4) d2 c,1 \finalis
  
  f4 f2 f4 f f2 f \divisioMaxima
  f4 f c c c2 f f4 c c2 f4 c d2 c1 \finalis
}

verse = \lyricmode {
  % Lyrics follow here.
  Let Thy mer -- cy be up -- on us, O Lord,
  as we __ have __ set our hope __ on Thee.
  
  My mouth shall speak wis -- dom,
  and the me -- di -- ta -- tion __ of my heart 
un -- der -- stand -- ing. 
}

\score {
  \new ChoirStaff 
\new Staff \with {
  midiInstrument =  string ensemble 1 
  instrumentName = \markup \center-column { S A }
} 
  \new Voice = soprano { \voiceOne \soprano }
  \new Voice = alto { \voiceTwo \alto }

\new Lyrics \lyricsto soprano \verse
\new Staff \with {
  midiInstrument =  string ensemble 1 
  instrumentName = \markup \center-column { T B }
} 
  \clef bass
  \new Voice = tenor { \voiceOne \tenor }
  \new Voice = bass { \voiceTwo \bass }

  
  \layout { ragged-last=##f }
  \midi {
\context {
  \Score
  tempoWholesPerMinute = #(ly:make-moment 120 4)
}
  }
}
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: need a header in the middle of a page

2010-09-24 Thread Xavier Scheuer
On 25 September 2010 00:07, Michael Dykes thedoctor81...@gmail.com wrote:

 Hullo all. I am doing some more of my traditional Orthodox Chant music, and
 I have two systems of music representing 2 diff Prokeimena (psalm verses
 chanted before the Epistle Reading). Above the second system, I need an
 additional header (in the style of the first header, same font, size, etc.)
 in order to let people know what the second hymn is. How do I accomplish
 this in Lilypond? The second header is: Prokeimenon for an Hierarch.

Hi!

Why not simply use 2 \score ?
I modified your file in order to separate the two Prokeimenon into
separate scores.  I tried to explain what I did (separating variables in
One and Two) with comments beginning with XS:.

If it is not what you wanted to achieve and/or if you have questions
about this, do not hesitate to post again.  ;-)


 Additionally, I need to add the psalm verses below each system: for the 1st
 system it is: Rejoice in the Lord, ye righteous; praise becometh the
 upright. Then for the 2nd system it is: Hear these things, all ye nations;
 give heed, all ye that dwell in the world.

I'm not sure I understand well.
See attached file (based on NR 2.1.3 Stanzas  Printing stanzas at the end).

Cheers,
Xavier

--
Xavier Scheuer x.sche...@gmail.com


prok_01_znam_mod.ly
Description: Binary data
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user