lilypond-user
[Top][All Lists]
Advanced

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

Re: Slur collides with Sharp


From: Nick Payne
Subject: Re: Slur collides with Sharp
Date: Wed, 10 Jul 2013 16:29:49 +1000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130623 Thunderbird/17.0.7

On 10/07/13 12:18, Marc Mouries wrote:
\version "2.16.2"
\language "english"
\paper{ ragged-right=##t }

Violin = \relative d' {
   \key g \major
   \time 3/4
      | e8 (  fs  c'  b)   fs(  ds
      | fs8  a)   g2~
}
\score {
    \new Staff {\Violin  }
    \layout {}
}

This works with 2.17.21. The syntax for \shape changed between 2.16 and 2.17, so for 2.16 you need to comment or remove the first \shape line and uncomment the second (not tested as I don't have 2.16 installed, but I think it's correct)...

\shape doesn't seem to be documented for 2.16, but see http://www.lilypond.org/doc/v2.17/Documentation/notation/modifying-shapes.

\version "2.16.2"
\language "english"
\paper{ ragged-right=##t }

Violin = \relative d' {
 \key g \major
 \time 3/4
 | e8 ( fs c' b)
 \shape #'((0 . -0.3) (0 . -1.2) (0 . -0.7) (0 . 0)) Slur % 2.17
 % \shape Slur #'((0 . -0.3) (0 . -1.2) (0 . -0.7) (0 . 0)) % 2.16
 fs( ds
 | fs8 a) g2~
}
\score {
 \new Staff {\Violin }
 \layout {}
}



reply via email to

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