Re: changing top margin

2014-03-20 Thread Kieren MacMillan
Hi Mark,

 The first page of a collection of piano pieces has only the header (title, 
 subtitle ) on the first page.  It is placed lower on the page with:
 \paper { top-margin = 3\in }.
  
 How do I return the top margin to the default size for the second and 
 subsequent pages (that contain the music)?
  
 Thank you for your kind attention.

Use \bookpart around your title page — then it has its own [separate] margins, 
etc.

Hope this helps!
Kieren.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


RE: changing top margin

2014-03-20 Thread Mark Stephen Mrotek
Kieren,

Thank you for your reply and the instruction. I did it (I think) and the
first page disappeared. I suspect that I did not place the command in the
proper location. Your assistance is appreciated.

Mark

-Original Message-
From: Kieren MacMillan [mailto:kieren_macmil...@sympatico.ca] 
Sent: Thursday, March 20, 2014 3:18 PM
To: Mark Stephen Mrotek
Cc: Lilypond-User Mailing List
Subject: Re: changing top margin

Hi Mark,

 The first page of a collection of piano pieces has only the header (title,
subtitle ) on the first page.  It is placed lower on the page with:
 \paper { top-margin = 3\in }.
  
 How do I return the top margin to the default size for the second and
subsequent pages (that contain the music)?
  
 Thank you for your kind attention.

Use \bookpart around your title page - then it has its own [separate]
margins, etc.

Hope this helps!
Kieren.=
\version 2.18.0

\paper {
  print-all-headers = ##t
  }


  \bookpart {
\paper {
  top-margin = 3\in
}

  \header {
title = Phatasie-Stüke
subtitle = Für Klavier zu zwei Händen
subsubtitle = Nach Handschriften und persölicher Herausgegeben von KLARA SCHUMANN
  }
  }
  
  \bookpart {

  \score {
  \new PianoStaff 
\new Staff = right \relative c'' {
  \key ges \major
  \time 4/4
  
  ges 1
  
}
  \new Staff = left { \clef bass \relative c' {
  \key ges \major
  \time 4/4
  
  ges1
  
}
  }
  
 
  
}
}

  }



  



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


Re: changing top margin

2014-03-20 Thread Kieren MacMillan
Hi Mark,

 Thank you for your reply and the instruction. I did it (I think) and the
 first page disappeared. I suspect that I did not place the command in the
 proper location. Your assistance is appreciated.

Here’s one possible structure to accomplish what you want.

Hope this helps!
Kieren.
_

\version 2.18.0

global = {
  \key ges \major
  \time 4/4  
}

rightmusic = \relative c'' {
  ges 1
}

leftmusic = \relative c' {
  \clef bass
  ges1
}

\bookpart {

  \paper {
top-margin = 3\in
scoreTitleMarkup = ##f
  }

  \header {
title = Phatasie-Stüke
subtitle = Für Klavier zu zwei Händen
subsubtitle = Nach Handschriften und persölicher Herausgegeben von KLARA 
SCHUMANN
  }

  \score { \new Devnull s1 }
}
  
\bookpart {

  \score {
\new PianoStaff 
  \new Staff = right  \global \rightmusic 
  \new Staff = left  \global \leftmusic 

  }
}

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


RE: changing top margin

2014-03-20 Thread Mark Stephen Mrotek
Kieren,

Thank you for the example, and the time and effort taken to produce it.
I shall study it tomorrow to learn the command structure.

Mark

-Original Message-
From: Kieren MacMillan [mailto:kieren_macmil...@sympatico.ca] 
Sent: Thursday, March 20, 2014 4:48 PM
To: Mark Stephen Mrotek
Cc: Lilypond-User Mailing List
Subject: Re: changing top margin

Hi Mark,

 Thank you for your reply and the instruction. I did it (I think) and 
 the first page disappeared. I suspect that I did not place the command 
 in the proper location. Your assistance is appreciated.

Here’s one possible structure to accomplish what you want.

Hope this helps!
Kieren.
_

\version 2.18.0

global = {
  \key ges \major
  \time 4/4
}

rightmusic = \relative c'' {
  ges 1
}

leftmusic = \relative c' {
  \clef bass
  ges1
}

\bookpart {

  \paper {
top-margin = 3\in
scoreTitleMarkup = ##f
  }

  \header {
title = Phatasie-Stüke
subtitle = Für Klavier zu zwei Händen
subsubtitle = Nach Handschriften und persölicher Herausgegeben von
KLARA SCHUMANN
  }

  \score { \new Devnull s1 }
}
  
\bookpart {

  \score {
\new PianoStaff 
  \new Staff = right  \global \rightmusic 
  \new Staff = left  \global \leftmusic 

  }
}


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