]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/paper-default-margins-a6.ly
Update regtest due to changes in page-breaking.
[lilypond.git] / input / regression / paper-default-margins-a6.ly
1 \version "2.13.7"
2
3 \header {
4   texidoc = "Default margin values are accessible in paper-defaults-init.ly
5 and apply to the default paper size returned by (ly:get-option
6 'paper-size). For other paper sizes, they are scaled linearly.
7 This also affects head- and foot-separation as well as indents."
8 }
9
10 someNotes = \repeat unfold 20 { c4 d e f }
11
12 \paper {
13   #(set-paper-size "a6")
14 }
15
16 \book {
17   \markup { For other paper sizes, margins are scaled accordingly. }
18   \score {
19     \relative c' {
20       \someNotes
21     }
22   }
23 }
24