lilypond-user
[Top][All Lists]
Advanced

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

Re: warning message - missing slur


From: Ralph Palmer
Subject: Re: warning message - missing slur
Date: Sat, 13 Apr 2019 20:25:35 -0400

On Sat, Apr 13, 2019 at 7:57 PM MING TSANG <address@hidden> wrote:
Lilyponders:

I have the following lily code:

\version "2.19.83"
\language "english"
  
   \fixed c' { <<{f4 e8 c8~( c4 e8( f8) )}\\{f4 e8 c~ 4~ 4}>> |

Inline image
the slur e8( f8) is missing. How can I get the slur printed by lilypond.

original:   
Inline image

    On the above image, slur from e to f necessary.

Greetings, Ming -

I've done two things. First, I've rewritten your code in a way that's easier for me to read.
Second, and more to the point, I've changed the "outside" set of slurs to phrasing slurs. AFAIK, you can't nest regular slurs. Please take a look at <http://lilypond.org/doc/v2.19/Documentation/learning/ties-and-slurs> .

All the best,

Ralph

%%%%%% begin snippet %%%%%%

\version "2.19.83"
\language "english"

\fixed c'
{ <<
  {
    f4 e8 c8~\( c4 e8( f8) \) |     % the \( and \) are phrasing slurs.
  }
  \\
  {
    f4 e8 c~ 4~ 4 ||
  }
  >>
  }
%%%%% end snippet %%%%%


--
Ralph Palmer
Brattleboro, VT
USA
address@hidden

reply via email to

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