Re: explicitClefVisibility

2021-03-12 Thread David Wright
On Fri 12 Mar 2021 at 16:11:56 (+0100), Anthony Rushforth wrote: > > I'm trying to get rid of key modifiers at end of lines. > I found this : > \set Staff.explicitClefVisibility = #end-of-line-invisible > which works well when flats are added, but not when sharps are added > I don't find the

Re: explicitClefVisibility

2021-03-12 Thread Anthony Rushforth
Hello again, I need to use both : \set Staff.explicitKeySignatureVisibility = #begin-of-line-visible \set Staff.printKeyCancellation = ##f it's perfect ! thank you very much, this mailing list is always a miracle Anthony Le ven. 12 mars 2021 à 17:45, Brian Barker a écrit : > At 16:11

Re: explicitClefVisibility

2021-03-12 Thread Brian Barker
At 16:11 12/03/2021 +0100, Anthony Rushforth wrote: I'm trying to get rid of key modifiers at end of lines. I found this : \set Staff.explicitClefVisibility = #end-of-line-invisible which works well when flats are added, but not when sharps are added I don't find the answer in the documentation

Re: explicitClefVisibility

2021-03-12 Thread Xavier Scheuer
On Fri, 12 Mar 2021 at 17:22, Jacques Menu wrote: > > Hello Anthony, > > How about: Hello, I would have used \set Staff.printKeyCancellation = ##f as mentioned in the doc NR 1.1.3 Displaying pitches > Key signature > Selected Snippets

Re: explicitClefVisibility

2021-03-12 Thread Jacques Menu
Hello Anthony, How about: % Better put the commands in layout \layout { \context { \Staff \override KeySignature #'break-visibility = ##(#f #t #t) \override KeyCancellation #'break-visibility = ##(#f #t #f) explicitKeySignatureVisibility = #'#(#f #t #t) } }

Re: explicitClefVisibility

2021-03-12 Thread Silvain Dupertuis
Interesting ! One thing I see: It is *not a question of sharps or flats*. It is the question of sharps of flats beeing added or suppressed. With Staff.explicitKeySignatureVisibility = #begin-of-line-visible The new Key signature is not printed at the end of the line, But a KeySignature with

explicitClefVisibility

2021-03-12 Thread Anthony Rushforth
Hello I'm trying to get rid of key modifiers at end of lines. I found this : \set Staff.explicitClefVisibility = #end-of-line-invisible which works well when flats are added, but not when sharps are added I don't find the answer in the documentation here is the ly an pdf result you can see the

Curiousity question about explicitClefVisibility

2012-09-19 Thread Jim Long
I just stubbed my toe on something silly, and I don't understand why it is the way it is. Why does this work: \version 2.16.0 \score { \relative c' { c4 c c c \break \set Staff.explicitClefVisibility = #end-of-line-invisible \clef bass c4 c c c \unset

Re: Curiousity question about explicitClefVisibility

2012-09-19 Thread David Kastrup
Jim Long lilyp...@umpquanet.com writes: But this doesn't: \version 2.16.0 \score { \relative c' { c4 c c c \break \set Staff.explicitClefVisibility = #end-of-line-invisible \clef bass \unset Staff.explicitClefVisibility c4 c c c \break } } I