Re: setting one \book to landscape

2019-01-21 Thread David Kastrup
"N. Andrew Walsh"  writes:

>> The second file has its own paper block as follows:
>>
>> \paper {
>>   #(set-paper-size "a3" 'landscape )
>>   two-sided = "false"

That is _not_ how you specify a boolean value in LilyPond.  You probably
want ##f here.

-- 
David Kastrup

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


Re: setting one \book to landscape

2019-01-21 Thread Carl Sorensen
From: "N. Andrew Walsh" 
Date: Monday, January 21, 2019 at 8:30 AM
To: lilypond-user 
Subject: Re: setting one book to landscape



There's one other matter here with this score: In the console output, I see 
this:

Drawing systems. . .
warning: compressing over-full page by 24.5 staff-spaces
warning: page 1 has been compressed

So how can I figure out why it's compressing the page? I don't see any \paper 
block besides these I've listed that specify a size for the page, so I don't 
know where it could be. Is there some special procedure for making 
landscape-format scores?

All this means is that the best page layout it could find with your systems was 
24.5 staff spaces too tall for the page, so it squeezed things a little closer 
than you’d like.

I don’t consider this warning to be a problem at all, as long as the visual 
representation of the music is OK in your opinion.

HTH,

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


Re: setting one \book to landscape

2019-01-21 Thread N. Andrew Walsh
Hi List,

On Sat, Jan 19, 2019 at 12:39 PM N. Andrew Walsh 
wrote:

>
> I have an input file with the following structure:
>
> \paper {
>   #(set-default-paper-size "a3" )
> }
>
> \include "file 1 - content.ly"
> \include "file 2 - content.ly"
>
> \book {
> \include "file 1 - score.ly"
> }
>
> \book {
> \include "file 2 - score.ly"
> }
>
> The second file has its own paper block as follows:
>
> \paper {
>   #(set-paper-size "a3" 'landscape )
>   two-sided = "false"
>   left-margin = 5\mm
>   right-margin = 15\mm
>#(define fonts
>  (set-global-fonts
>   #:factor (/ staff-height pt 24 )
>   ))
>   system-system-spacing.basic-distance = #36
>   score-system-spacing =
> #'((basic-distance . 24)
>(minimum-distance . 12)
>(padding . 8)
>(stretchability . 12))
>
> }
>
>
There's one other matter here with this score: In the console output, I see
this:

Drawing systems. . .
warning: compressing over-full page by 24.5 staff-spaces
warning: page 1 has been compressed

So how can I figure out why it's compressing the page? I don't see any
\paper block besides these I've listed that specify a size for the page, so
I don't know where it could be. Is there some special procedure for making
landscape-format scores?

Cheers,

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


setting one \book to landscape

2019-01-19 Thread N. Andrew Walsh
Hi List,

I have an input file with the following structure:

\paper {
  #(set-default-paper-size "a3" )
}

\include "file 1 - content.ly"
\include "file 2 - content.ly"

\book {
\include "file 1 - score.ly"
}

\book {
\include "file 2 - score.ly"
}

The second file has its own paper block as follows:

\paper {
  #(set-paper-size "a3" 'landscape )
  two-sided = "false"
  left-margin = 5\mm
  right-margin = 15\mm
   #(define fonts
 (set-global-fonts
  #:factor (/ staff-height pt 24 )
  ))
  system-system-spacing.basic-distance = #36
  score-system-spacing =
#'((basic-distance . 24)
   (minimum-distance . 12)
   (padding . 8)
   (stretchability . 12))

}

However, for reasons I don't understand, the system on that second page is
squashed horizontally, as if the system could only stretch to fill a
portrait-oriented page. Also, the staves are too close together vertically,
with no vertical distance given.

Is there something I'm doing wrong with my layout or the file structure?
The first file is a portrait-format a3 sheet with over 40 voice parts; the
second should be a landscape-format a3 sheet with maybe 10 staves, both
scaled appropriately. So far, only the scaling and spacing on the first
file works right.

Thanks for the help,

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