Re: Cowell clusters

2020-12-27 Thread Gilberto Agostinho

Hi Thomas,

Thank you so much for the files, this is super useful!

Cheers,
Gilberto


On 24/12/2020 20:38, Thomas Morley wrote:

Hi Gilberto,

I reworked the code, see
https://lilypondforum.de/index.php/topic,820.msg4562.html#msg4562
You'll need an account there to get the files, thus I attach them here as well.

Cheers,
   Harm




Re: how to move a clef horizontally

2020-12-27 Thread Lukas-Fabian Moser

Folks,


How about: [... very elegant solution ...]


While Harm's solution is great, I'm under the impression that it 
shouldn't be needed, i.e., that LilyPond's behaviour classifies as a 
bug. I tried to boil the example down to its essentials:


\version "2.20.0"

\new PianoStaff
<<
  \new Staff = "upper" {
    e''4 \clef bass f
  }
  \new Staff = "lower" {
    \clef bass
    c16 e' \change Staff = "upper" g' c''
    \change Staff = "lower"
    d,4
  }
>>

Also, compare:

\version "2.20.0"

\new PianoStaff
<<
  \new Staff = "upper" {
    \clef bass
    e4*3/4 \clef violin s4*1/4 f
  }
  \new Staff = "lower" {
    \clef bass
    c16 e \change Staff = "upper" g c''
    \change Staff = "lower"
    d,4
  }
>>

What do you think?

Lukas