Re: cuenotes are not displayed (Ian Hulin)

2011-10-16 Thread Reinhold Kainhofer
Am Sonntag, 16. Oktober 2011, 10:01:46 schrieb Stefan Thomas:
 Dear community,
 because of the wrong code, I post You my snippet again.
 The Problem is: the quoted voice doesn't appear in the staff
 anotherinstrument and it has definetily to do with the command
 
  \set PianoStaff.instrumentName= Piano
 
 Is there  possibilitie to get the quodation without quitting the command
 that sets the instrumentName for the PianoStaff?
 I have the problem, in a larger score, hat some cuenotes are not displayed.
 I assume  it has to do with some commands that are related to another
 context than Voice.

Yes, that was one case of bug 1214 
(http://code.google.com/p/lilypond/issues/detail?id=1214 ). It was fixed in 
LilyPond 2.15.9, so as soon as 2.16 is released, you'll have a fix. 
I don't know any easy workaround in earlier lilypond versions (except removing 
the offending commands from the music, e.g. by creating a second copy 
\rightII, which is only used in \addQuote and which does not have the \set 
command).
That's what I had used before I finally fixed bug 1214.

Cheers,
Reiknhold

 Here my new snippet:
 
 \version 2.14.2
 
  right  = {
\set PianoStaff.instrumentName = Piano
c'' 4 g' a' b'   c'' 4 d'' e'' f'' g'' 1 }
  
  \addQuote right { \right }
  anotherinstrument = { c' 1 \quoteDuring #right s1 c'1  }
  
  \score { \new Staff \anotherinstrument }
-- 
--
Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/
 * Financial  Actuarial Math., Vienna Univ. of Technology, Austria
 * http://www.fam.tuwien.ac.at/, DVR: 0005886
 * LilyPond, Music typesetting, http://www.lilypond.org

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


Re: cuenotes are not displayed (Ian Hulin)

2011-10-16 Thread Stefan Thomas
Dear Reinhold,
thanks for Your fast reply.
The problem is: I don't exactly know, which other commands could cause
hiding the quoted voice than \set PianoStaff.instrumentName= ?
I have the problem, that the music of the cellopart is not quoted, although
it isn't a Pianostaff.

2011/10/16 Reinhold Kainhofer reinh...@kainhofer.com

 Am Sonntag, 16. Oktober 2011, 10:01:46 schrieb Stefan Thomas:
  Dear community,
  because of the wrong code, I post You my snippet again.
  The Problem is: the quoted voice doesn't appear in the staff
  anotherinstrument and it has definetily to do with the command
 
   \set PianoStaff.instrumentName= Piano
 
  Is there  possibilitie to get the quodation without quitting the command
  that sets the instrumentName for the PianoStaff?
  I have the problem, in a larger score, hat some cuenotes are not
 displayed.
  I assume  it has to do with some commands that are related to another
  context than Voice.

 Yes, that was one case of bug 1214
 (http://code.google.com/p/lilypond/issues/detail?id=1214 ). It was fixed
 in
 LilyPond 2.15.9, so as soon as 2.16 is released, you'll have a fix.
 I don't know any easy workaround in earlier lilypond versions (except
 removing
 the offending commands from the music, e.g. by creating a second copy
 \rightII, which is only used in \addQuote and which does not have the \set
 command).
 That's what I had used before I finally fixed bug 1214.

 Cheers,
 Reiknhold

  Here my new snippet:
 
  \version 2.14.2
 
   right  = {
 \set PianoStaff.instrumentName = Piano
 c'' 4 g' a' b'   c'' 4 d'' e'' f'' g'' 1 }
  
   \addQuote right { \right }
   anotherinstrument = { c' 1 \quoteDuring #right s1 c'1  }
  
   \score { \new Staff \anotherinstrument }
 --
 --
 Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/
  * Financial  Actuarial Math., Vienna Univ. of Technology, Austria
  * http://www.fam.tuwien.ac.at/, DVR: 0005886
  * LilyPond, Music typesetting, http://www.lilypond.org

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


Re: cuenotes are not displayed (Ian Hulin)

2011-10-16 Thread Reinhold Kainhofer
Am Sonntag, 16. Oktober 2011, 13:35:42 schrieb Stefan Thomas:
 Dear Reinhold,
 thanks for Your fast reply.
 The problem is: I don't exactly know, which other commands could cause
 hiding the quoted voice than \set PianoStaff.instrumentName= ?

All things that create a different context. Examples are:
\new Voice { ... }
 { ... } \\ { ... } 
\partcombine {...} {...}

Cheers,
Reinhold


 I have the problem, that the music of the cellopart is not quoted, although
 it isn't a Pianostaff.


 
 2011/10/16 Reinhold Kainhofer reinh...@kainhofer.com
 
  Am Sonntag, 16. Oktober 2011, 10:01:46 schrieb Stefan Thomas:
   Dear community,
   because of the wrong code, I post You my snippet again.
   The Problem is: the quoted voice doesn't appear in the staff
   anotherinstrument and it has definetily to do with the command
   
\set PianoStaff.instrumentName= Piano
   
   Is there  possibilitie to get the quodation without quitting the
   command that sets the instrumentName for the PianoStaff?
   I have the problem, in a larger score, hat some cuenotes are not
  
  displayed.
  
   I assume  it has to do with some commands that are related to
   another
   context than Voice.
  
  Yes, that was one case of bug 1214
  (http://code.google.com/p/lilypond/issues/detail?id=1214 ). It was fixed
  in
  LilyPond 2.15.9, so as soon as 2.16 is released, you'll have a fix.
  I don't know any easy workaround in earlier lilypond versions (except
  removing
  the offending commands from the music, e.g. by creating a second copy
  \rightII, which is only used in \addQuote and which does not have the
  \set command).
  That's what I had used before I finally fixed bug 1214.
  
  Cheers,
  Reiknhold
  
   Here my new snippet:
   
   \version 2.14.2
   
right  = {

  \set PianoStaff.instrumentName = Piano
  c'' 4 g' a' b'   c'' 4 d'' e'' f'' g'' 1 }

\addQuote right { \right }
anotherinstrument = { c' 1 \quoteDuring #right s1 c'1  }

\score { \new Staff \anotherinstrument }
  
  --
  --
  Reinhold Kainhofer, reinh...@kainhofer.com,
  http://reinhold.kainhofer.com/ 
   * Financial  Actuarial Math., Vienna Univ. of Technology, Austria
   * http://www.fam.tuwien.ac.at/, DVR: 0005886
   * LilyPond, Music typesetting, http://www.lilypond.org
-- 
--
Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/
 * Financial  Actuarial Math., Vienna Univ. of Technology, Austria
 * http://www.fam.tuwien.ac.at/, DVR: 0005886
 * LilyPond, Music typesetting, http://www.lilypond.org

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


cuenotes are not displayed

2011-10-15 Thread Stefan Thomas
Dear community,
in the following snippet the cuenotes are not displayed.
I think it has to do with the PianoStaff-context in the Staff right.
Is there a way to force lilypond to show the cuenotes, without erasing the
command \set PianoStaff.instrumentName = Piano?
Here is my snippet:

\version 2.14.2
right  = { \set PianoStaff.instrumentName = Piano
  c'' 4 g' a' b'   c'' 4 d'' e'' f'' g'' 1 }

\addQuote rigth { \right }

anothoerinstrument = { c' 1 \cueDuring #right #UP { R1 } c'1  }
\score {
  
  \keepWithTag #'cued
  \new Staff \anothoerinstrument

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


Re: cuenotes are not displayed

2011-10-15 Thread Stefan Thomas
Sorry, there was a mistake with  right and  rigth.
It should be right in both cases!

2011/10/15 Stefan Thomas kontrapunktste...@googlemail.com

 Dear community,
 in the following snippet the cuenotes are not displayed.
 I think it has to do with the PianoStaff-context in the Staff right.
 Is there a way to force lilypond to show the cuenotes, without erasing the
 command \set PianoStaff.instrumentName = Piano?
 Here is my snippet:

 \version 2.14.2
 right  = { \set PianoStaff.instrumentName = Piano
   c'' 4 g' a' b'   c'' 4 d'' e'' f'' g'' 1 }

 \addQuote rigth { \right }

 anothoerinstrument = { c' 1 \cueDuring #right #UP { R1 } c'1  }
 \score {
   
   \keepWithTag #'cued
   \new Staff \anothoerinstrument
 
 }


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


Re: cuenotes are not displayed

2011-10-15 Thread Ian Hulin
Hi Stefan,
Should the \addQuote say rigth or right?

Cheers, Ian

On 15/10/11 20:46, Stefan Thomas wrote:
 Sorry, there was a mistake with  right and  rigth. It should be
 right in both cases!
 
 2011/10/15 Stefan Thomas kontrapunktste...@googlemail.com 
 mailto:kontrapunktste...@googlemail.com
 
 Dear community, in the following snippet the cuenotes are not
 displayed. I think it has to do with the PianoStaff-context in the
 Staff right. Is there a way to force lilypond to show the
 cuenotes, without erasing the command \set
 PianoStaff.instrumentName = Piano? Here is my snippet:
 
 \version 2.14.2 right  = { \set PianoStaff.instrumentName =
 Piano c'' 4 g' a' b'   c'' 4 d'' e'' f'' g'' 1 }
 
 \addQuote rigth { \right }
^^^
typo?

 
 anothoerinstrument = { c' 1 \cueDuring #right #UP { R1 } c'1  } 
 \score {  \keepWithTag #'cued \new Staff \anothoerinstrument
 
 }
 
 
 
 
 ___ lilypond-user
 mailing list lilypond-user@gnu.org 
 https://lists.gnu.org/mailman/listinfo/lilypond-user


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