Re: Polymetric setup and volta repeat with alternatives

2015-10-01 Thread David Wright
Quoting Simon Albrecht (simon.albre...@mail.de):

> these two don’t seem to go well together:
> If Timing_translator and Default_bar_line_engraver are moved to
> Staff context, no repeat bar lines are printed and the gap between
> the Volta brackets disappears. Moving the
> Repeat_acknowledge_engraver along fixes the bar lines, but prints no
> Volta brackets at all.
> 
> Is this due to wrong usage or a bug?

I think you need to move the Volta_engraver too.

Cheers,
David.

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


Re: Polymetric setup and volta repeat with alternatives

2015-10-01 Thread Thomas Morley
2015-09-29 23:03 GMT+02:00 Simon Albrecht :
> Hello,
>
> these two don’t seem to go well together:
> If Timing_translator and Default_bar_line_engraver are moved to Staff
> context, no repeat bar lines are printed and the gap between the Volta
> brackets disappears. Moving the Repeat_acknowledge_engraver along fixes the
> bar lines, but prints no Volta brackets at all.
>
> Is this due to wrong usage or a bug?
>
> Thanks, Simon


More a documentation issue.
Needs to be done for "Volta_engraver" as well.

Cheers,
  Harm

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


Polymetric setup and volta repeat with alternatives

2015-09-30 Thread Simon Albrecht

Hello,

these two don’t seem to go well together:
If Timing_translator and Default_bar_line_engraver are moved to Staff 
context, no repeat bar lines are printed and the gap between the Volta 
brackets disappears. Moving the Repeat_acknowledge_engraver along fixes 
the bar lines, but prints no Volta brackets at all.


Is this due to wrong usage or a bug?

Thanks, Simon
\version "2.19.27"
\paper { #(set-paper-size "a7") indent = 0 }
\header { tagline = ##f }

mus = {
  \repeat volta 2 {
s1
  }
  \alternative {
{ s1 }
{ s1 }
  }
}

setup = << \mus \mus >>

\score {
  \setup
  \layout {
\context {
  \Score
  \remove Timing_translator
  \remove Default_bar_line_engraver
}
\context {
  \Staff
  \consists Timing_translator
  \consists Default_bar_line_engraver
}
  }
}
\score {
  \setup
  \layout {
\context {
  \Score
  \remove Timing_translator
  \remove Default_bar_line_engraver
  \remove Repeat_acknowledge_engraver
}
\context {
  \Staff
  \consists Timing_translator
  \consists Default_bar_line_engraver
  \consists Repeat_acknowledge_engraver
}
  }
}___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user