lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Articulation engraver ?


From: Mats Bengtsson
Subject: Re: Articulation engraver ?
Date: Tue, 10 Jul 2007 00:08:28 +0200
User-agent: Internet Messaging Program (IMP) H3 (4.0.5)

Quoting "Germain G. Ivanoff-Trinadtzaty" <address@hidden>:

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






reply via email to

[Prev in Thread] Current Thread [Next in Thread]