lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: The space between "\score"s


From: Louis Guillaume
Subject: Re: The space between "\score"s
Date: Fri, 17 Nov 2017 01:19:57 -0500
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.4.0

On 11/16/17 8:18 PM, Ben wrote:
On 11/16/2017 5:11 PM, Louis Guillaume wrote:
\score
{
    ...
}

Hello,

Your code does not compile, could you share a working example so we can help you better with the indent, etc?

Also, let us know what version you're using...

Thanks!



Ok! I'm using version 2.18.2. Here's what I've discovered with some testing.

If my music goes over one page, there is a large gap between the main score and the Coda.

If it doesn't, then the Coda shows up where it's expected.

Try this here. Un-comment the last few bars and hopefully you'll see the large gap between the scores on the second page.

Any help would be great. Thanks!

Louis





%{
        Multi-score Test file
%}

#(set-default-paper-size "letter")

\paper
{
top-markup-spacing = #'((basic-distance . 0) (padding . 13) (stretchability . 0) (minimum-distance . 0)) nonstaff-relatedstaff-spacing = #'((basic-distance . 0) (padding . 8) (stretchability . 0) (minimum-distance . 0)) markup-system-spacing = #'((basic-distance . 0) (padding . 5) (stretchability . 0) (minimum-distance . 0)) system-system-spacing = #'((basic-distance . 0) (padding . 3) (stretchability . 0) (minimum-distance . 0))
        two-sided = ##t
        top-margin = 8
        bottom-margin = 5
        outer-margin = 13
        inner-margin = 13
}

\header
{
        title = "MULTISCORE TEST"
        instrument = \markup \small
        {
              "Violin or Flute"
        }
        composer = \markup \column \small
        {
              \right-align {"Composer" }
              \right-align {"Arranger" }
        }
        tagline = ""
}

\score
{
        \new Staff
        {
                \relative c''
                {
                        \set Staff.midiInstrument = #"violin"
                        \time 4/4
                        \numericTimeSignature

                        c1 c c c
                        c c c cis
                        d dis e2 f fis f

                        c1 c c c
                        c c c cis
                        d dis e2 f fis f

                        c1 c c c
                        c c c cis
                        d dis e2 f fis f

                        c1 c c c
                        c c c cis
                        d dis e2 f fis f
                        
                        c1 c c c
                        c c c cis
                        d dis e2 f fis f

                        c1 c c c
                        c c c cis
                        d dis e2 f fis f
                        
                        c1 c c c
                        c c c cis
                        d dis e2 f fis f
                
                        c1 c c c
                        c c c cis
                        d dis e2 f fis f

                        c1 c c c
                        c c c cis
                        d dis e2 f fis f
                        
                        % c1 c c c
                        % c c c cis
                        % d dis e2 f fis f

                        % c1 c c c
                        % c c c cis
                        % d dis e2 f fis f
                        %
                        % c1 c c c
                        % c c c cis
                        % d dis e2 f fis f

                        \bar "|."

                }

        }

        \layout { }

}

% CODA
\score
{
        
        \new Staff
        {
                \mark \markup { "CODA " \musicglyph #"scripts.coda"}
                \relative c''
                {
                        c1 c
                        \bar "|."
                }

        }

        \layout
        {
                indent = 55
        }
}


\version "2.18.2"  % necessary for upgrading to future LilyPond versions.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]