Re: print bass staff not always

2019-01-24 Thread Gianmaria Lari
> > From David K. > AFAIR, \PianoStaff \remove "Keep_alive_together_engraver" is the same as > \GrandStaff . And \RemoveEmptyStaves \override > VerticalAxisGroup.remove-first = ##t is the same as > \RemoveAllEmptyStaves . > > So it's more like you want > > \score > { > \new GrandStaff << >

Re: print bass staff not always

2019-01-24 Thread David Kastrup
Gianmaria Lari writes: > On Wed, 23 Jan 2019 at 14:53, David Kastrup wrote: > >> Gianmaria Lari writes: >> [...] > >> To make lilypond print anyway a staff only containing rests [] >> > > >> That does not look simpler than >> >> \new Staff \with { >> keepAliveInterfaces = #'( >>

Re: print bass staff not always

2019-01-24 Thread Gianmaria Lari
On Wed, 23 Jan 2019 at 16:31, Simon Albrecht wrote: > On 22.01.19 09:56, Gianmaria Lari wrote: > > > > I found an issue with \RemoveEmptyStaves. It also remove \Dynamics. > > Just write a layout block like this: > \layout { >\context { > \PianoStaff > \remove

Re: print bass staff not always

2019-01-24 Thread Gianmaria Lari
On Wed, 23 Jan 2019 at 14:53, David Kastrup wrote: > Gianmaria Lari writes: > [...] > To make lilypond print anyway a staff only containing rests [] > > That does not look simpler than > > \new Staff \with { > keepAliveInterfaces = #'( > rest-interface > bass-figure-interface

Re: print bass staff not always

2019-01-23 Thread Simon Albrecht
On 22.01.19 09:56, Gianmaria Lari wrote: I found an issue with \RemoveEmptyStaves. It also remove \Dynamics. Just write a layout block like this: \layout {   \context {     \PianoStaff     \remove Keep_alive_together_engraver   }   \context {     \Staff     \RemoveAllEmptyStaves   } } This

Re: print bass staff not always

2019-01-23 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 21 Jan 2019 at 22:33, David Kastrup wrote: > >> Gianmaria Lari writes: >> >> > On Mon, 21 Jan 2019 at 14:57, Gianmaria Lari >> > wrote: >> > >> >> >> >> >> >> On Mon, 21 Jan 2019 at 13:02, Valentin Villenave < >> valen...@villenave.net> >> >> wrote: >> >> >>

Re: print bass staff not always

2019-01-22 Thread Andrew Bernard
Hi Giammaria, No, it's a valid English word! Andrew On Tue, 22 Jan 2019 at 19:58, Gianmaria Lari wrote: > > P.S. To Andrew: well as you saw my english it's pretty imprecise. So if > you will be patient from me you will teach a lot of new words > >

Re: print bass staff not always

2019-01-22 Thread Gianmaria Lari
I found an issue with \RemoveEmptyStaves. It also remove \Dynamics. So, if I write something like this \version "2.19.82" \score { \new PianoStaff { << \new Staff {a4 b c' d'} \new Dynamics {s4\pp} >> } \layout { \context { \PianoStaff \RemoveEmptyStaves

Re: print bass staff not always

2019-01-22 Thread Andrew Bernard
Hi Gianmaria, I am indebted to you for introducing me to the word escamotage. I have never heard it before! Andrew ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: print bass staff not always

2019-01-21 Thread Gianmaria Lari
On Mon, 21 Jan 2019 at 22:33, David Kastrup wrote: > Gianmaria Lari writes: > > > On Mon, 21 Jan 2019 at 14:57, Gianmaria Lari > > wrote: > > > >> > >> > >> On Mon, 21 Jan 2019 at 13:02, Valentin Villenave < > valen...@villenave.net> > >> wrote: > >> > >>> On 1/21/19, Andrew Bernard wrote: >

Re: print bass staff not always

2019-01-21 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 21 Jan 2019 at 14:57, Gianmaria Lari > wrote: > >> >> >> On Mon, 21 Jan 2019 at 13:02, Valentin Villenave >> wrote: >> >>> On 1/21/19, Andrew Bernard wrote: >>> > Not sure how to do it with PianoStaff. >>> >>> That’s because of the Keep_alive_together

Re: print bass staff not always

2019-01-21 Thread Gianmaria Lari
On Mon, 21 Jan 2019 at 14:57, Gianmaria Lari wrote: > > > On Mon, 21 Jan 2019 at 13:02, Valentin Villenave > wrote: > >> On 1/21/19, Andrew Bernard wrote: >> > Not sure how to do it with PianoStaff. >> >> That’s because of the Keep_alive_together engraver. Your layout block >> should look

Re: print bass staff not always

2019-01-21 Thread Andrew Bernard
Hi Valentin, Great! Re staff visibility in piano, that was going to be my comment also. But I always say, give people what they want. At least lilypond lets you do it if you like. Andrew On Mon, 21 Jan 2019 at 23:00, Valentin Villenave wrote: > > That being said, I have never seen a piano

Re: print bass staff not always

2019-01-21 Thread Valentin Villenave
On 1/21/19, Andrew Bernard wrote: > Not sure how to do it with PianoStaff. That’s because of the Keep_alive_together engraver. Your layout block should look like: \layout { \context { \PianoStaff \RemoveEmptyStaves \remove "Keep_alive_together_engraver" \override

Re: print bass staff not always

2019-01-21 Thread Andrew Bernard
Hi Gianmaria, I know you can do this with GrandStaff and the score context settings shown here. Not sure how to do it with PianoStaff. Andrew % \version "2.19.82" rh = { \clef treble \repeat unfold 3 {a1 b1 c'1 d'1 \break}} lh = { \clef bass s1*4 a1 1 1 1} \score { \new GrandStaff <<

print bass staff not always

2019-01-21 Thread Gianmaria Lari
The following code prints three "lines" of music. The first and second lines are two staff system (treble and bass) and the third line just one staff (treble). \version "2.19.82" rh = { \clef treble \repeat unfold 3 {a1 b1 c'1 d'1 \break}} lh = { \clef bass s1*4 a1 1 11} \score { \new