]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-layout-manual-position.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / page-layout-manual-position.ly
1 \header {
2
3   texidoc = "By setting @code{Y-offset} and @code{X-offset} for the
4 @code{line-break-system-details} of @code{NonMusicalPaperColumn},
5 systems may be placed absolutely on the printable area of the page."
6
7   tagline = "this is the tagline"
8
9 }
10
11 \version "2.7.39"
12
13 #(set-default-paper-size "a6" 'portrait)
14
15 \paper {
16   line-width = 5.0\cm
17   headerMarkup = "header"
18   indent =0.0
19   annotatespacing = ##f
20   annotatepage = ##t
21   annotateheaders = ##t
22 }
23
24 \book {
25   \score {
26     {
27       \overrideProperty 
28       #"Score.NonMusicalPaperColumn"
29       #'line-break-system-details
30       #'((Y-offset . 0.0))
31       c1 c1 \break
32       
33     
34       \overrideProperty 
35       #"Score.NonMusicalPaperColumn"
36       #'line-break-system-details
37       #'((Y-offset . 62.0)
38          (X-offset . 8.0)
39       )
40       c1 c1
41     }
42   }
43 }