]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/key-signature-left-edge.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / key-signature-left-edge.ly
1 \header {
2
3   texidoc = "If the clef engraver is removed, the key signature shall use a
4 proper padding > 0 to the start of the staff lines."
5
6 }
7
8 \version "2.14.0"
9
10 m = \relative c' { \key f \major c8 }
11
12 % Default spacing should not be affected
13 \score {
14   \new Staff \m
15 }
16
17 % Key signature should not touch the left edge
18 \score {
19   \new Staff \with {
20       \remove "Clef_engraver"
21   } \m
22 }