Re: Two adjacent clefs

2024-06-10 Thread Valentin Petzel
> Thank you for this. One question: is the second clef the size of a "change > clef" ? The reason I chose LSR 792 over 956 is the size of the second clef. Yes. See for example \relative c' { %% Start with a bass clef : \clef bass %% Use a hidden grace note: \once\hideNotes\grace c64

Re: Two adjacent clefs

2024-06-10 Thread Knute Snortum
On Mon, Jun 10, 2024 at 3:25 AM Valentin Petzel wrote: > > and this is the rather hacky one using hidden grace notes - my > > searching skills are sadly lacking evidently :( > > > > Richard > > Trust me, the other one is even more hacky ... It essentially fakes the > appearance of the real clef a

Re: Two adjacent clefs

2024-06-10 Thread Valentin Petzel
> and this is the rather hacky one using hidden grace notes - my > searching skills are sadly lacking evidently :( > > Richard Trust me, the other one is even more hacky ... It essentially fakes the appearance of the real clef and draws a new clef glyph into the TimeSignature grob. Did a draft

Re: Two adjacent clefs

2024-06-09 Thread Richard Shann
On Sun, 2024-06-09 at 18:08 +0200, Jean Abou Samra wrote: > > > I think it's not uncommon for two clefs to appear side by side at > > the > > start of a piece (e.g. when a piano piece starts with both staves > > in > > bass clef so as to alert the pianist that the upper staff is not in > > treble

Re: Two adjacent clefs

2024-06-09 Thread Jean Abou Samra
> I think it's not uncommon for two clefs to appear side by side at the > start of a piece (e.g. when a piano piece starts with both staves in > bass clef so as to alert the pianist that the upper staff is not in > treble clef). > How is this done in LilyPond? See https://lsr.di.unimi.it/LSR/Item

Re: Two adjacent clefs

2024-06-09 Thread Richard Shann
On Sun, 2024-06-09 at 06:56 -0700, Knute Snortum wrote: > > On Sun, Jun 9, 2024 at 6:39 AM Richard Shann > wrote: > > > I was imagining that this construct was more commonly used than I > > guess > > it actually is (the current case that I have been asked about is > > not > > even what I took to

Re: Two adjacent clefs

2024-06-09 Thread Knute Snortum
On Sun, Jun 9, 2024 at 6:39 AM Richard Shann wrote: I was imagining that this construct was more commonly used than I guess > it actually is (the current case that I have been asked about is not > even what I took to be the common case of pianists so used to having > treble and bass that they don

Re: Two adjacent clefs

2024-06-09 Thread Richard Shann
On Sun, 2024-06-09 at 10:33 +0200, Valentin Petzel wrote: > Hello Richard, > > usually for this I’d simply use grace notes to create a timestep > separation > between two clefs: > > { >   \clef bass >   \once\hideNotes\grace c64 >   \once\override Staff.Clef.X-extent = #'(1.5 . 2) >   \clef treb

Re: Two adjacent clefs

2024-06-09 Thread Richard Shann
On Sat, 2024-06-08 at 14:46 -0400, William Rehwinkel wrote: > Dear Richard, > > I'm not sure what you mean, but I think I would do something like > this > for putting multiple clefs together. > > -William > > % -- > \version "2.25.16" > > \relative c' { >    \override Staff.Cle

Re: Two adjacent clefs

2024-06-09 Thread Valentin Petzel
Hello Richard, usually for this I’d simply use grace notes to create a timestep separation between two clefs: { \clef bass \once\hideNotes\grace c64 \once\override Staff.Clef.X-extent = #'(1.5 . 2) \clef treble 1 } But then it would actually be quite easy to have this done properly by

Re: Two adjacent clefs

2024-06-08 Thread William Rehwinkel via LilyPond user discussion
Dear Richard, I'm not sure what you mean, but I think I would do something like this for putting multiple clefs together. -William % -- \version "2.25.16" \relative c' { \override Staff.Clef.stencil = #ly:text-interface::print \override Staff.Clef.text = \markup { \raise

Re: Two adjacent clefs

2024-06-08 Thread Richard Shann
On Sat, 2024-06-08 at 08:09 -0700, Knute Snortum wrote: > On Sat, Jun 8, 2024 at 7:03 AM Richard Shann > wrote: > > I think it's not uncommon for two clefs to appear side by side at > > the > > start of a piece (e.g. when a piano piece starts with both staves > > in > > bass clef so as to alert th

Re: Two adjacent clefs

2024-06-08 Thread Knute Snortum
On Sat, Jun 8, 2024 at 7:03 AM Richard Shann wrote: > I think it's not uncommon for two clefs to appear side by side at the > start of a piece (e.g. when a piano piece starts with both staves in > bass clef so as to alert the pianist that the upper staff is not in > treble clef). > How is this do