Re: Nesting parallelMusic voices

2018-03-19 Thread Aleksey Alekseev
Thank you for your answer! I just tested version 2.19.80. It works without warnings. I place more code below. Idea is to write a long complex part once and use it several times (and all in \parallelMusic). \version "2.18.2"\parallelMusic #'(upperLongComplexPart lowerLongComplexPart) {d''1 |

Re: Nesting parallelMusic voices

2018-03-18 Thread Ben
On 3/18/2018 1:26 PM, Алексей Алексеев wrote: This code: ``` \version "2.18.2" \parallelMusic #'(upperNest lowerNest) { d''1 | d'1 | } \parallelMusic #'(upper lower) { \upperNest | \lowerNest | } ``` produce "Bars in parallel music don't have the same length" warnings. Why? Is it bug

Re: Nesting parallelMusic voices

2018-03-18 Thread Ben
On 3/18/2018 1:26 PM, Алексей Алексеев wrote: This code: ``` \version "2.18.2" \parallelMusic #'(upperNest lowerNest) { d''1 | d'1 | } \parallelMusic #'(upper lower) { \upperNest | \lowerNest | } ``` produce "Bars in parallel music don't have the same length" warnings. Why? Is it bug

Nesting parallelMusic voices

2018-03-18 Thread Алексей Алексеев
This code: ``` \version "2.18.2" \parallelMusic #'(upperNest lowerNest) { d''1 | d'1 | } \parallelMusic #'(upper lower) { \upperNest | \lowerNest | } ``` produce "Bars in parallel music don't have the same length" warnings. Why? Is it bug in lilypond? _