Hi,

in the preventing-final-mark-from-removing-final-tuplet.ly (=
http://lsr.dsi.unimi.it/LSR/Item?id=705 ) I noticed a bug with \set
tupletFullLength and \mark while using 2.14.2 and 2.15.30.

log:
warning: Found infinity or nan in output. Substituting 0.0

Made a bug-report about it.

For now I use a shorter mark.


Cheers,
  Harm
\version "2.14.0"

\header {
  texidoc = "
The addition of a final @code{mark} can result in the loss of a final
tuplet marking.  This can be overcome by setting @code{TupletBracket
#'full-length-to-extent} to @code{false}.

"
  doctitle = "Preventing final mark from removing final tuplet"
}
\new Staff {
   \set tupletFullLength = ##t
   \time 1/8
   \times 2/3 { c'16 c'16 c'16 }
   \times 2/3 { c'16 c'16 c'16 }
   \times 2/3 { c'16 c'16 c'16 }
   \override Score.RehearsalMark #'break-visibility = #'#(#t #t #t)
   \override Score.RehearsalMark #'direction = #DOWN
   \override Score.RehearsalMark #'self-alignment-X = #RIGHT
   \mark "1234"
% due to a bug the following line is commented 
%   \mark "Composed Feb 2007 - Feb 2008"
}

\new Staff {
  \set tupletFullLength = ##t

  \override TupletBracket #'full-length-to-extent = ##f

  \time 1/8
  \times 2/3 { c'16 c'16 c'16 }
  \times 2/3 { c'16 c'16 c'16 }
  \times 2/3 { c'16 c'16 c'16 }
  \override Score.RehearsalMark #'break-visibility = #'#(#t #t #t)
  \override Score.RehearsalMark #'direction = #DOWN
  \override Score.RehearsalMark #'self-alignment-X = #RIGHT
  \mark "1234"
% due to a bug the following line is commented 
%  \mark "Composed Feb 2007 - Feb 2008"
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to