Re: unexpected 2nd staff

2024-09-23 Thread Mats Bengtsson
On 2024-09-23 16:28, David Kastrup wrote: Mats Bengtsson writes: or using the \voices command: \version "2.25.19" \new Staff \fixed c'' { \voices 2,4 << { e8( f~2.) } \\ { e8( f d2.) } >> } LilyPond's normal order for stem-down voices top to bottom would rather be \voices 4,2 Yes, but

Re: unexpected 2nd staff

2024-09-23 Thread David Kastrup
Mats Bengtsson writes: > or using the \voices command: > \version "2.25.19" > \new Staff \fixed c'' { \voices 2,4 << { e8( f~2.) } \\ { e8( f d2.) } >> } LilyPond's normal order for stem-down voices top to bottom would rather be \voices 4,2 -- David Kastrup

Re: unexpected 2nd staff

2024-09-23 Thread Mats Bengtsson
On 2024-09-22 22:13, Paul Scott wrote: How can I make this happen in one staff with all the stems down? \version "2.25.19" \fixed c'' { << { e8( f~2.) } { e8( f d2.) } >> } In addition to the responses you already received: - The reason that you get two staves is that you start the score w

Re: unexpected 2nd staff

2024-09-23 Thread David Kastrup
Paul Scott writes: > How can I make this happen in one staff with all the stems down? > > \version "2.25.19" > > \fixed c'' { << { e8( f~2.) } { e8( f d2.) } >> } By telling LilyPond you want it in one Staff: \new Staff \fixed c'' { << { e8( f~2.) } { e8( f d2.) } >> } However, this also puts

Re: unexpected 2nd staff

2024-09-22 Thread Xavier Scheuer
On Sun, 22 Sept 2024 at 22:20, Paul Scott wrote: > > How can I make this happen in one staff with all the stems down? Hello, Or use \partCombine, it's not clear what you are after. instrumentOne = \fixed c'' { \partCombineUnisono e8( f~ \partCombineChords f2.) } instrumentTwo = \fixed c'' { e8(

Re: unexpected 2nd staff

2024-09-22 Thread Paul Scott
Thank you. I was trying to get all the stems down to replicate something I was given. I was aware of the function of "\\", Actually, I like the looks of your answer better and will dismiss recreating what I was given. Thank you, Paul On 9/22/24 1:26 PM, William Rehwinkel wrote: Dear Paul,

Re: unexpected 2nd staff

2024-09-22 Thread William Rehwinkel via LilyPond user discussion
Dear Paul, You can add "\\" in-between the two parts in << >>. Like so: << { e8( f~2.) } \\ { e8( f d2.) } >> -William On 9/22/24 16:13, Paul Scott wrote: How can I make this happen in one staff with all the stems down? \version "2.25.19" \fixed c'' { << { e8( f~2.) } { e8( f d2.) } >> }