Hi Knute

in order to avoid this sort of problems, you should move the include after the \score block with layout and before the \score with midi. This tip was recommended on lilypond-user several times but it's not present in the documentation:
http://lilypond.org/doc/v2.19/Documentation/notation/the-articulate-script

I think it's worth adding it to the NR.

\version "2.19.19"
\language "english"

music = \relative c'' { \appoggiatura cs8 d1 }

\score {
 \music
 \layout {}
}

\include "articulate.ly"

\score {
 \articulate <<
   \music
 >>
 \midi {}
}


Il giorno sab 9 mag 2015 alle 18:55, Knute Snortum <[email protected]> ha scritto:
If you use an appoggiatura with articulate.ly, even if you have different
score blocks, the appoggiatura is not rendered correctly.

\version "2.19.19"
\language "english"
\include "articulate.ly"

music = \relative c'' { \appoggiatura cs8 d1 }

\score {
  \music
  \layout {}
}

\score {
  \articulate <<
    \music
  >>
  \midi {}
}

Knute Snortum
(via Gmail)
_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond


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

Reply via email to