]> git.donarmstrong.com Git - lilypond.git/blob - input/test/no-bar-lines.ly
*** empty log message ***
[lilypond.git] / input / test / no-bar-lines.ly
1
2 \version "2.1.28"
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   \notes \relative c'' {
13     a b c d
14     d c b a
15   }
16   \paper {
17     raggedright = ##t
18     \translator {
19       \StaffContext
20       whichBar = #""
21       \remove "Time_signature_engraver"
22     }
23   }
24 }
25
26