Il 14/01/2013 16:24, Rustik ha scritto:
I have three pages. There is title on the first page. I want to make five
systems on this page. On the second page I want to make six systems. And on
the last page I want to see five systems. I want to do it this way: bottom
system on every page is located at about the same distance from the bottom
of the page. The top system on every page (except the first page; on the
first page I have a title) is located at about the same distance from the
top of the page. And other systems (not top and not bottom) are evenly
distributed between the top and bottom systems.
This could be a starting point:
\paper {
page-count = #3
min-systems-per-page = #5
max-systems-per-page = #6
markup-system-spacing = #'((padding . 10))
system-system-spacing = #'((padding . 10))
}
The attached file tries to mimic a bit your example.
--
Federico
\version "2.17.10"
\header {
title = "My Title"
}
\paper {
line-width = #180
top-margin = #15
bottom-margin = #10
page-count = #3
min-systems-per-page = #5
max-systems-per-page = #6
markup-system-spacing = #'((padding . 10))
system-system-spacing = #'((padding . 10))
}
global = {
\key c \major
\time 4/4
}
violin = \relative c'' {
\global
\repeat unfold 166 { R1 }
}
contrabass = \relative c {
\global
\repeat unfold 166 { R1 }
}
violinPart = \new Staff \with {
} \violin
contrabassPart = \new Staff \with {
} { \clef bass \contrabass }
\score {
\new PianoStaff
<<
\violinPart
\contrabassPart
>>
\layout {
indent = 0
}
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user