Re: Double fermata on barline error

2011-08-07 Thread Xavier Scheuer
On 8 August 2011 07:24, Javier Ruiz-Alma  wrote:
>
> I found a sample snippet using GrandStaff for the purpose of placing two
> fermatas on top/bottom of a bar line.
>
> But my score with PianoStaff, I can't manage to get the fermatas to align
> similarly.
>
> Attach is pdf of the engraving, and below is the lilypond.

That's because in your PianoStaff code you apply your RehearsalMark
direction override to the _Score_ level, which affect both fermatas.
Apply it to the _Staff_ level instead (like in the GrandStaff code).

  % in your second Staff
  \override Staff.RehearsalMark #'direction = #DOWN

Cheers,
Xavier

-- 
Xavier Scheuer 

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


Double fermata on barline error

2011-08-07 Thread Javier Ruiz-Alma
I found a sample snippet using GrandStaff for the purpose of placing two 
fermatas on top/bottom of a bar line.
 
But my score with PianoStaff, I can't manage to get the fermatas to align 
similarly.
 
Attach is pdf of the engraving, and below is the lilypond.
 
Thank You, Javier
 
___
 
\version "2.14.2"
%---BEGIN SAMPLE SNIPPET
\score { 
 \new GrandStaff <<
  \context Staff = one {
   c''1 \bar "|."
   \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible
   \mark \markup { \musicglyph #"scripts.ufermata" }
  }
  \context Staff = two \with { \consists "Mark_engraver" } {
   c''1
   \override Staff.RehearsalMark #'direction = #DOWN
   \mark \markup { \musicglyph #"scripts.dfermata" }
  }>>
}

%--BEGIN FAULTY SCORE
\score{
   \new PianoStaff <<
  \set PianoStaff.connectArpeggios = ##t
  \new Staff {
d''1\arpeggio |\bar "|." 
\override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible
\mark \markup { \musicglyph #"scripts.ufermata" }
  }
  \new Staff  \with { \consists "Mark_engraver" } {
      \clef bass
1\arpeggio|
\override Score.RehearsalMark #'direction = #DOWN 
\mark \markup { \musicglyph #"scripts.dfermata" }
 }>>
   \layout{\context { \Staff \consists "Span_arpeggio_engraver"}}
}

Double_fermata_error.pdf
Description: Adobe PDF document
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: double fermata

2008-04-01 Thread Orm Finnendahl
Hi Mats,

 thanks a lot, that worked!

Yours,
Orm

Am Tuesday, den 01. April 2008 um 18:19:03 Uhr (+0200) schrieb Mats Bengtsson:
> That's a bug! I have already commited a fix in GIT. Waiting for the next 
> release,
> you can add the following lines to your file:
> \layout{
>  \context{
>\DrumVoice
>\remove Multi_measure_rest_engraver
>\consists Multi_measure_rest_engraver
> 
>  }
> }
> 
> (If you think it looks strange, the problem was that the engraver was added
> twice and when you do \remove it removes both copies so you have to add
> one back afterwards.)
> 
>   /Mats
> 
> Orm Finnendahl wrote:
> >Hi,
> >
> > on DrumStaffs I get two fermatas on multimeasure rests, normal Staffs
> >work as expected (see below and attached pdf).
> >
> >Am I doing something wrong?
> >
> >\version "2.11.42"
> > 
> >\score {
> ><<
> >  \new DrumStaff
> >{ R1^\fermataMarkup}
> >  \new Staff
> >{ R1^\fermataMarkup}
> >  
> >}
> >
> >--
> >Orm
> >  
> >
> >
> >___
> >lilypond-user mailing list
> >lilypond-user@gnu.org
> >http://lists.gnu.org/mailman/listinfo/lilypond-user
> 
> -- 
> =
>   Mats Bengtsson
>   Signal Processing
>   School of Electrical Engineering
>   Royal Institute of Technology (KTH)
>   SE-100 44  STOCKHOLM
>   Sweden
>   Phone: (+46) 8 790 8463 
>Fax:   (+46) 8 790 7260
>   Email: [EMAIL PROTECTED]
>   WWW: http://www.s3.kth.se/~mabe
> =
> 
> 
> 
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/lilypond-user


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


Re: double fermata

2008-04-01 Thread Valentin Villenave
2008/4/1, Mats Bengtsson <[EMAIL PROTECTED]>:

>  (If you think it looks strange, the problem was that the engraver was added
>  twice and when you do \remove it removes both copies so you have to add
>  one back afterwards.)

Wow, impressive! thanks for having been so fast!

I didn't know engravers could be added twice; is it documented
somewhere? I guess it doesn't affect all the engravers equally...

Cheers,
Valentin


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


Re: double fermata

2008-04-01 Thread Valentin Villenave
2008/4/1, Orm Finnendahl <[EMAIL PROTECTED]>:

>   on DrumStaffs I get two fermatas on multimeasure rests, normal Staffs
>  work as expected (see below and attached pdf).

Hi Orm,

looks like a bug to me. Unless anyone has some additional information
about it, i'll add it to the tracker.

Cheers,
Valentin


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


Re: double fermata

2008-04-01 Thread Mats Bengtsson
That's a bug! I have already commited a fix in GIT. Waiting for the next 
release,

you can add the following lines to your file:
\layout{
 \context{
   \DrumVoice
   \remove Multi_measure_rest_engraver
   \consists Multi_measure_rest_engraver

 }
}

(If you think it looks strange, the problem was that the engraver was added
twice and when you do \remove it removes both copies so you have to add
one back afterwards.)

  /Mats

Orm Finnendahl wrote:

Hi,

 on DrumStaffs I get two fermatas on multimeasure rests, normal Staffs
work as expected (see below and attached pdf).

Am I doing something wrong?

\version "2.11.42"
 
\score {

<<
  \new DrumStaff
{ R1^\fermataMarkup}
  \new Staff
{ R1^\fermataMarkup}
  
}


--
Orm
  



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


--
=
Mats Bengtsson
Signal Processing
School of Electrical Engineering
Royal Institute of Technology (KTH)
SE-100 44  STOCKHOLM
Sweden
Phone: (+46) 8 790 8463 
   Fax:   (+46) 8 790 7260
Email: [EMAIL PROTECTED]
WWW: http://www.s3.kth.se/~mabe
=



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


double fermata

2008-04-01 Thread Orm Finnendahl
Hi,

 on DrumStaffs I get two fermatas on multimeasure rests, normal Staffs
work as expected (see below and attached pdf).

Am I doing something wrong?

\version "2.11.42"
 
\score {
<<
  \new DrumStaff
{ R1^\fermataMarkup}
  \new Staff
{ R1^\fermataMarkup}
>>
}

--
Orm



test.pdf
Description: Adobe PDF document
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user