Re: "Rest" invisible after part combine

2014-08-06 Thread Pierre Perol-Schneider
Hi Stephen,

2014-08-06 6:38 GMT+02:00 Stephen Sheasby :


> The problem I have run into is that my rest for the soprano and bass line
> do not print and I am wondering if this is a limitation of partcombine?
>

As far as I remember it was a well known issue. I thougt it was over but I
have to admit that I barely use partcombine.
Here's what you can try :

\version "2.18.2"
\include "english.ly"

%   -- Common settings
global = {
  \numericTimeSignature
  \key df \major % -- Change Key as needed.
  \time 4/4
  \aikenHeads
  \partial 2
}

%   -- Soprano
sopranoNotes = \relative c' {
  \global
  r8 d8 d[ f] | %  U
  \bar ".|:"
  f2 \partcombineApartOnce r4 e8 f  | %  1
}

%   -- Alto
altoNotes = \relative c' {
  \global
  r8 a8 a[ d]  | %  U
  \bar ".|:"
  d4 d8( c) \stemDown c4 c8 d  | %  1
}

%   -- Tenor
tenorNotes = \relative c {
  \global
  \clef bass
  r8 f8 f[ a]   | %  U
  a4 a a a8 a| %  1
}

%   -- Bass
bassNotes = \relative c {
  r8 d8 d[ d] | %  U
  d2 \partcombineApartOnce c4\rest d8 d  | %  1
}

%Partcombine syntax:
\score {
  <<
\new Staff \with { printPartCombineTexts = ##f } {
\partcombine \sopranoNotes  \altoNotes }

\new Staff \with { printPartCombineTexts = ##f } {
\partcombine \tenorNotes  \bassNotes }
  >>
}

For more details, see :
https://code.google.com/p/lilypond/issues/detail?id=261

HTH,
Pierre
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: "Rest" invisible after part combine

2014-08-06 Thread James

On 06/08/14 08:29, Pierre Perol-Schneider wrote:

Hi Stephen,

2014-08-06 6:38 GMT+02:00 Stephen Sheasby >:


The problem I have run into is that my rest for the soprano and
bass line do not print and I am wondering if this is a limitation
of partcombine?


As far as I remember it was a well known issue. I thougt it was over 
but I have to admit that I barely use partcombine.

Here's what you can try :



...



For more details, see : 
https://code.google.com/p/lilypond/issues/detail?id=261



ttp://code.google.com/p/lilypond/issues/detail?id=913

Does this have any bearing?

There are a quite a few issues known with partcombine.

http://code.google.com/p/lilypond/issues/list?can=2&q=partcombine

James

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: "Rest" invisible after part combine

2014-08-10 Thread Keith OHara
Pierre Perol-Schneider  gmail.com> writes:
> 
> As far as I remember it was a well known issue. I thougt it was over but I 
have to admit that I barely use partcombine.
> 
> For more details, see : https://code.google.com/p/lilypond/issues/detail?
id=261
> 

When using partcombine to build an instrumental score, during the time when
one instrument is playing solo, we usually want to leave out the rests for
the other instrument.  The usual "Solo" or "a2" mark makes it clear whether
the notes are unison or solo.

For this case with all the short rests, it seems you would like an option
to \partcombine that sets only in chords or as separate voices, never using
the "solo" settings.  LilyPond doesn't have exactly that yet.

Also the \aikenHeads shortcut only affects one voice, so you probably want
instead 
  \set Staff.shapeNoteStyles = ##(do re miMirror fa sol la ti)
just once in each Staff where you want that style.


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user