Jump to content

Arpeggio bracket: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
In a score where you've printed many chords with <code>\arpeggio</code> signs, you may want to tell the player that one particular chord must not be arpeggiated. This can be done quite easily by adding a square bracket instead of the arpeggio sign.
In a score where you've printed many chords with <code>\arpeggio</code> signs, you may want to tell the player that one particular chord must not be arpeggiated. This can be done quite easily by adding a square bracket instead of the arpeggio sign.


<lilypond version="2.24.0">
<lilypond version="2.24">
%% http://lsr.di.unimi.it/LSR/Item?id=237
%% http://lsr.di.unimi.it/LSR/Item?id=237



Revision as of 18:56, 16 November 2025

In a score where you've printed many chords with \arpeggio signs, you may want to tell the player that one particular chord must not be arpeggiated. This can be done quite easily by adding a square bracket instead of the arpeggio sign.

\version "2.24"

%% http://lsr.di.unimi.it/LSR/Item?id=237

\relative c'' {
  \arpeggioBracket
  <fis, d a>\arpeggio
}