Hi Lilypond users,
believe me, I tried everything, but failed with this easy task: Starting
from page 2, add some vertical space between the header line and the staff.
The best I managed to achieve was adding vertical space starting on page 2, but
it was pushing the header down as well.
How would I approach this? TY!
A \markup \vspace in the book section only affects page one. I code has to go
into the paper section?
% CODE BEGIN
\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
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
}
>>
\layout { }
}
\score {
\new Staff {
\set Staff.midiInstrument = "clarinet" {
\transposition h \unfoldRepeats { \clarinetMusic }
}
}
\midi { }
}
}
% CODE END