]> git.donarmstrong.com Git - lilypond.git/blob - input/test/no-bar-lines.ly
* scripts/convert-ly.py (FatalConversionError.subst_in_trans):
[lilypond.git] / input / test / no-bar-lines.ly
1
2 \version "2.1.23"
3 % possible rename to bar-lines-foo.  -gp
4
5 \header{ texidoc = "@cindex Bar Lines Remove
6 You can stop LilyPond from printing bar lines by removing the engraver. "
7 }
8
9 \score {
10   \notes \relative c'' {
11     a b c d
12     d c b a
13   }
14   \paper {
15     raggedright = ##t
16     \translator {
17       \StaffContext
18       whichBar = #""
19       \remove "Time_signature_engraver"
20     }
21   }
22 }
23
24