Peter Toye <lilyp...@ptoye.com> writes:

> Trying to engrave a piece of piano music where the left hand starts in the 
> treble clef. The music I’m copying from has a bass clef at the start of the 
> piece, followed by a clef change immediately before the first note, which I 
> think was standard practice in the 19th century (but I'm willing to be told 
> otherwise in the 21st).  
>
> Is there any way of reproducing this? I tried the snippet below, but it 
> doesn't give me the bass clef sign. 
>
> \version "2.19.52"
>
> \language "english"
>
> \score {
>   \new Staff {
>  \clef "bass"
>   \time 4/4
>   \clef "treble"
>   c''2 c''
>
>
>  }
>
> }

You can try something like

\version "2.19.52"

\language "english"

\score {
  \new Staff {
    \time 4/4
    \clef "bass"
    \grace \omit r128
    \clef "treble"
    c''2 c''
 }

}
For some reason, using s instead of \omit r causes overlapping
notation.  I'd lean towards calling that a bug.

-- 
David Kastrup
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to