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 {}
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to