]> git.donarmstrong.com Git - lilypond.git/blob - input/test/no-bar-lines.ly
LSR: adding new files.
[lilypond.git] / input / test / no-bar-lines.ly
1
2 \version "2.10.0"
3 % possible rename to bar-lines-foo.  -gp
4
5 \header{ texidoc = "@cindex Bar Lines Remove
6 Engravers can be removed one by one. Here, the time signature and bar lines 
7 have been removed.
8 "
9 }
10
11 \score {
12    \relative c'' {
13     a b c d
14     d c b a
15   }
16   \layout {
17     ragged-right = ##t
18     \context {
19       \Staff
20       whichBar = #""
21       \remove "Time_signature_engraver"
22     }
23   }
24 }
25
26