Re: Tuplet with dashed tie

2016-02-08 Thread David Kastrup
Gregor Giesen writes: > how can I write a dashed tie within a tuplet? In the following example > "\tieDashed" is ignored: > > { > \tieDashed \tuplet 3/2 { c' ( e') g' } > } Because there is no tie in that example? > Alternatively, a tilde also does not work: > { > \tieDashed \tuplet 3/2 { c

Re: Tuplet with dashed tie

2016-02-08 Thread Ralph Palmer
On Mon, Feb 8, 2016 at 2:58 PM, Gregor Giesen wrote: > Hi, > > how can I write a dashed tie within a tuplet? In the following example > "\tieDashed" is ignored: > > Thanks in advance, > Gregor Greetings, Gregor - This is not a tie. It's a slur. This works : %%% { \slurDashed \t

Re: Tuplet with dashed tie

2016-02-08 Thread Robert Schmaus
Hi Gregor, your first example doesn't work because what you have in the tuplet is in fact not a tie but a slur. Thus, \slurDashed *does* work. The second example does not work because ties only work between two notes of the *same* pitch, therefore you get a warning about c not being tied to

Tuplet with dashed tie

2016-02-08 Thread Gregor Giesen
Hi, how can I write a dashed tie within a tuplet? In the following example "\tieDashed" is ignored: {   \tieDashed \tuplet 3/2 { c' ( e') g' } } Alternatively, a tilde also does not work: {   \tieDashed \tuplet 3/2 { c' ~ e' g' } } Moreover, this yields the warning: unterminated tie. Thanks in