lilypond-user
[Top][All Lists]
Advanced

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

Re: Making a vibrato symbol


From: Edward Neeman
Subject: Re: Making a vibrato symbol
Date: Wed, 25 May 2011 20:48:12 -0400
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10

On 5/24/11 5:58 PM, Albu wrote:
How do I put the trill or vibrato symbol? Without the "tr" I just want the
waves after the "poco vib" and end them where the chord begins

\version "2.12.1"  
\relative c'
{

a'8.\mf des32 c_\markup { poco vib } f,4 \acciaccatura  g8 e2~
e1~
 < e d' ~ gis> d'4 
	
}
You can use a text spanner:

\version "2.12.1"
\relative c'
{

  a'8.\mf des32
  \override TextSpanner #'(bound-details left text) =
    \markup { \vcenter \normal-text "poco vib." }
  \override TextSpanner #'style = #'trill
  \override TextSpanner #'direction = #DOWN
  c\startTextSpan f,4 \acciaccatura  g8 e2~
  e1~
  < e d' ~ gis>\stopTextSpan d'4

}


Best,
Edward

reply via email to

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