]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-layout-manual-position.ly
* scm/page.scm (make-page-stencil): read X-offset from paper-system.
[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
12 #(set-default-paper-size "a6" 'portrait)
13
14 \paper {
15   linewidth = 5.0\cm
16   headerMarkup = "header"
17   indent =0.0
18   annotatespacing = ##f
19   annotatepage = ##t
20   annotateheaders = ##t
21 }
22
23 \book {
24   \score {
25     {
26       \overrideProperty 
27       #"Score.NonMusicalPaperColumn"
28       #'line-break-system-details
29       #'((Y-offset . 0.0))
30       c1 c1 \break
31       
32     
33       \overrideProperty 
34       #"Score.NonMusicalPaperColumn"
35       #'line-break-system-details
36       #'((Y-offset . 62.0)
37          (X-offset . 8.0)
38       )
39       c1 c1
40     }
41   }
42 }