bug-lilypond
[Top][All Lists]
Advanced

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

Re: articulate.ly alters visual appearance of \appoggiatura


From: Federico Bruni
Subject: Re: articulate.ly alters visual appearance of \appoggiatura
Date: Sun, 20 Jan 2013 16:17:18 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130107 Thunderbird/17.0.2

Il 20/01/2013 15:46, Werner LEMBERG ha scritto:

[release/2.17.9-1-62-g51d4e23]

The attached images show the output of the small snippet below with
and without the `\include' line commented out.

   \version "2.17.10"

   \include "articulate.ly"

   \relative c'' {
     \appoggiatura { g16 } a4
   }

I think this is a bug: IMHO, the inclusion of `articulate.ly' (without
actually using it) must not alter the visual appearance of any grob.


     Werner


This has been reported already as issue 2877:
http://code.google.com/p/lilypond/issues/detail?id=2877

James, this still affects current master (which includes the patches from Zefram).

The turnaround is moving the include after the music:

\version "2.17.10"

%\include "articulate.ly"

music = \relative c'' {
    \appoggiatura { g16 } a4
}

\include "articulate.ly"

\score {
  \music
}

--
Federico



reply via email to

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