[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Tuplet Bus error
From: |
Mats Bengtsson |
Subject: |
Re: Tuplet Bus error |
Date: |
Fri, 22 Jun 2007 23:03:11 +0200 |
User-agent: |
Internet Messaging Program (IMP) H3 (4.0.5) |
Please always send bus error or segmentation fault problems directly
to the bug-lilypond mailing list (I have done it for this email, as you
can see).
It seems that the problem is that the code that handles the tuplets
needs to have stems available. The solution is to use
\layout{
\context{
\TabStaff
\override TimeSignature #'stencil = ##f
}
\context{
\TabVoice
\remove Beam_engraver
\remove Stem_engraver
\remove Tuplet_engraver
}
}
instead. Also, I don't know where you have found the
\override TupletBracket #'number-visibility = ##f setting, there
is no such property (but you can do
\override TupletBracket #'bracket-visibility = ##f
on the other hand).
/Mats
Quoting Joey Coyle <address@hidden>:
Hi,
Why is this tuplet in \partition bad? I copied it from the docs...
Slowly but surely, I may figure this out....................
thanks,
joey
\header{
title = "A scale in LilyPond"
}
\version "2.10.10"
\layout{
\context{
\TabStaff
\override TimeSignature #'stencil = ##f
}
\context{
\TabVoice
\remove Beam_engraver
\remove Stem_engraver
\override TupletBracket #'number-visibility = ##f
}
}
partition = {
\key e \major
\times 2/3 { f8 g a }
}
<<
\new Staff {
\clef "G_8"
\partition }
\new TabStaff {
\partition
}
>>
_______________________________________________
lilypond-user mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/lilypond-user
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: Tuplet Bus error,
Mats Bengtsson <=