Quoting "Germain G. Ivanoff-Trinadtzaty" <[EMAIL PROTECTED]>:

if you read the according chapter in the manual you'll see a link at the bottom which leads to the corresponding part in the program reference, in this case 'Script'.
so, you'll need to remove Script_engraver.

Thank you, Tao.
Do you know a way to exclude some types of articulation, or some given (particular) articulations, from this exclusion ? (I mean : don't print all c4 \fermata, but print all c4-> ) or (don't print the next articulation)

The low-tech solution to your problem is to make a separate identifier that only contains the articulations and spacer notes, which you include where you want them. Something like:

myArticulations = { \skip 1*3 s1^\fermata }
myMusic = {c1 d e f}
% Score with articulations:
\score{
 \new Voice << \myArticulations \myMusic >>
}

% Score without articulations:
\score{
 \new Voice { \myMusic }
}

There are also a number of high-tech solutions available, for example
using the \tag feature described in Section "Different editions from one source".

  /Mats




_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to