Hi Michael,

> 
> Likely :-) In my understanding I would have too put e.g.
> 
>  markup-system-spacing = #'((padding . 10.0))
> 
> into the global paper section. I'd try to replace the 10.0 by an if clause in
> guile (check if page 1) later, which is another problem.
> 
> But unfortunately above padding is only applied to page 1...

Maybe because you’re setting the wrong value…?  ;)

%%%  SNIPPET BEGINS
\version "2.27.0" \language "deutsch"

clarinetMusic = { \*260 s1 }

\header {
 title = "Title"
 instrument = "Clarinet 1"
 composer = "Composer"
 tagline = ##f
}

\paper {
 print-page-number = ##t
 print-first-page-number = ##f
 top-system-spacing = #'((basic-distance . 40))
 evenHeaderMarkup = \markup \fill-line {
   \if \should-print-page-number \fromproperty #'page:page-number-string
   \unless \on-first-page \fontsize #-3.0 \concat { \fromproperty 
#'header:title " - " \fromproperty #'header:instrument }
   \null
 }
 oddHeaderMarkup = \markup \fill-line {
   \null
   \unless \on-first-page \fontsize #-3.0 \concat { \fromproperty 
#'header:title " - " \fromproperty #'header:instrument }
   \if \should-print-page-number \fromproperty #'page:page-number-string
 }
}

#(set-global-staff-size 24)

\book {
 \score {
   <<
     \new Staff \relative c'' {
       \transposition h \clarinetMusic
     }
   >>
 }
}
%%%  SNIPPET ENDS

Hope that helps!
Kieren.


__________________________________________________

My work day may look different than your work day. Please do not feel obligated 
to read or respond to this email outside of your normal working hours.


Reply via email to