Hi,
I tried to go deeper in my problem, trying to understand where it
starts to do  not work, and it seems that as soon as I \remove the
"Timing_translator" from the Score context, I lose the possibility to
break lines. On the other side, I cannot have it in the Score context,
and only remove the Default_bar_line_engraver (and consists it only in
the Staff context)

A kind of solution is to use tuplets and cancel the bracket and
number, and put manually the barlines but this would make impossible
to use tuplets inside each single rhythm (in this solution, a tuplet
would be in fact a nested tuplet, and if I hide them, I cannot see
them!). Also the syntax start to be really obscure.

Hope it can help, somehow.

Thanks and regards,

Libero


%%% SNIPPET %%%

\score {
                        <<
        \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
        \new Staff {    % first staff
                                \time 3/4
                                c c c
                                c c c \break
                                c c c
                                
                                } % end staff

        \new Staff {    % second staff
                                \time 9/4
                                \times 3/4 {c c c c } %\bar "|"
                                \times 3/4 {c c c c } %\bar "|"
                                \times 3/4 {c c c c } %\bar "|"
                                } % end staff

        \new Staff {    % third staff
                                \time 3/4
                                \times 2/3 {c c c } %\bar "|"
                                \times 2/3 {c c c } %\bar "|"
                                \times 2/3 {c c c }
                                } % end staff

                        >> %end of expression together
        } %end of \score

\layout {
        \context {
                        \Score
                                \remove "Timing_translator" % If I \remove it, 
I can't get line
break, so it should stay commented.
                                \remove "Default_bar_line_engraver" % if I 
\remove it, and
\consists in the Staff context, I don't get any bar line.
                        } % end of context Score
%       
        \context {
                        \Staff
                        \consists "Timing_translator"
                        \consists "Default_bar_line_engraver"
                        } % end of context Staff

        \context {
                        \Voice
                        \remove "Forbid_line_break_engraver"
                        } % end of context Voice
        } % end of layout


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to