lilypond-user
[Top][All Lists]
Advanced

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

Re: Wavy lines - contemporary notation


From: Jean Abou Samra
Subject: Re: Wavy lines - contemporary notation
Date: Fri, 26 Mar 2021 21:57:48 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1


Le 26/03/2021 à 20:57, Rachel Green a écrit :
How can I create a wavy line as in this picture?
Best,
Rachel

\relative c
  {
  \time 6/4
  \clef C
  \override NoteHead.style = #'harmonic
  c’1 r4 r4
  }



Something like this?

\version "2.23.2"

mySquiggle =
\tweak parent-alignment-X #RIGHT
\tweak extra-offset #'(0 . -3)
^\markup
\override #'(height . 2)
\override #'(thickness . 2)
\override #'(angularity . 1)
\draw-squiggle-line #3 #'(15 . 0) ##f


\relative c
  {
  \time 6/4
  \clef C
  \repeat unfold 36 c'8
  \once \override NoteHead.style = #'harmonic
  \once \textLengthOn
  c1\mySquiggle
  r4 r4
}

Documentation for \draw-squiggle-line is here:

lilypond.org/doc/v2.22/Documentation/notation/graphic*

Best,
Jean


reply via email to

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