If I have the following, in order to have a separate title page without a page number and have the first page of the score numbered as "1", then the inner margin and not the outer margin is the smaller. If you comment out the first-page-number = 0 and print-first-page-number = ##f settings, then the inner and outer margins get swapped.

%=================
\version "2.13.12"

\paper {
    #(set-paper-size "a4")
    first-page-number = 0
    print-first-page-number = ##f
    top-margin = 1.5\cm
    bottom-margin = 1\cm
    outer-margin = 1\cm
    inner-margin = 1.5\cm
    two-sided = ##t
}

\header {
    title = \markup {
        \lower #50 \left-align \center-column {
            \fontsize #6 \bold "Title Page"
            \lower #1 \fontsize #1 \bold "Composer"
        }
    }
    subtitle = ##f
    tagline = ##f
}

\pageBreak

\score {
  \relative c' {
    \repeat unfold 600 c4
  }
}
%=================

Nick


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to