lilypond-user
[Top][All Lists]
Advanced

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

Re: Bracket with text label


From: Alec Bartsch
Subject: Re: Bracket with text label
Date: Thu, 19 Sep 2013 11:21:30 -0700


On Sep 19, 2013, at 10:02 AM, Urs Liska <address@hidden> wrote:

I'm not sure if that's the best approach, but you could use a pseudo tuplet
and override the text of the "tuplet number":

\once \override TupletNumber #'text = "even"
\times 4/4 { a8 g16 f }

Depending on your LilyPond version you can use \tuplet instead of \times and write TupletNumber.text

That's perfect; the key I was missing was how to make a "pseudo tuplet." This gives me exactly what I want:

\version "2.17.26"
\include "english.ly"

\relative c' {
\clef bass
\once \override TupletNumber.text = "even"
\once \override TupletBracket.bracket-visibility = ##t
\once \override TupletBracket.direction = 1
\tuplet 4/4 { a8 g16 f } g4 gf8 f r4
}

Thanks for your help!

Alec


reply via email to

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