]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/grid-lines-adding-vertical-lines-between-staves.ly
Add a --skip-png-check option.
[lilypond.git] / input / lsr / grid-lines-adding-vertical-lines-between-staves.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "editorial-and-educational-use"
7  texidoc = "
8 Vertical lines can be drawn between staves synchronized with the notes.
9 " }
10 % begin verbatim
11 \layout {
12  \context {
13    \Staff
14    \consists "Grid_point_engraver"
15    % sets up grids
16    gridInterval = #(ly:make-moment 1 4)
17    % this sets the grid interval to 1 quarternote (crotchet)
18  }
19 }
20
21 \new Score \with {
22  \consists "Grid_line_span_engraver"
23  %% by default this centers grid lines horizontally below and to the
24  % left side of the notehead, the grid lines extend from
25  % the middle lines of each staff
26 }
27
28 \new ChoirStaff <<
29  \new Staff {
30    \relative c'' {
31      \stemUp
32      c4. d8 e8 f g4
33    }
34  }
35  \new Staff {
36    \clef bass
37    \relative c {
38      \stemDown
39      c4  g'  f  e
40    }
41  }
42 >>