On 2015-06-26 16:51, Peter Gentry wrote:
Hello

My paper block is
% -----------------------------------------------------------
% set the paper layout for binding
% footer has title and page number
% -----------------------------------------------------------
  \paper {
                #(set-default-paper-size "a4" 'landscape)
                two-sided = ##t
              [...]
          } % end of paper block

But the pdf output is still A4 Portrait where am I going wrong?

Hi Peter,

see

http://lilypond.org/doc/v2.18/Documentation/notation/paper-size-and-automatic-scaling

set-default-paper-size must be called at top-level, out of the paper block; the alternative is to use set-paper-size in the paper block:

#(set-default-paper-size "a4" 'landscape)
\paper {
  ...
}

%% or

\paper {
  #(set-paper-size "a4" 'landscape)
  ...
}


HTH,
Alexander

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

Reply via email to