]> git.donarmstrong.com Git - lilypond.git/blob - input/test/no-key-at-end-of-line.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / test / no-key-at-end-of-line.ly
1 \version "2.7.39"
2 \header {
3
4     texidoc = "@cindex Key Signature End of Line
5 According to normal typesetting conventions, LilyPond typesets key
6 changes at the end of the line, when the change appears at a line break.
7 This example shows how to change this default to only print the
8 new key signature at the beginning of the next line.
9 " }
10
11 \score {
12    \relative c' {
13     \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible
14     c d e f | g a b c | \break
15     \key d \major
16     d cis b a | g fis e d |
17   }
18 }