Jump to content

Using \arpeggioBracket to show special fingering: Difference between revisions

From LilyPond wiki
m New category
Tags: Mobile edit Mobile web edit
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
A common use of <code>arpeggioBracket</code> in piano music is to show that two keys are to be played with the same finger/thumb. This requires the use of transparent notes in another voice.
A common use of <code>\arpeggioBracket</code> in piano music is to show that two keys are to be played with the same finger/thumb. This requires the use of transparent notes in another voice.


<lilypond version="2.24">
<lilypond version="2.24">
%% http://lsr.di.unimi.it/LSR/Item?id=442
\score {
\score {
   \new Staff <<  
   \new Staff <<  

Latest revision as of 15:05, 3 December 2025

A common use of \arpeggioBracket in piano music is to show that two keys are to be played with the same finger/thumb. This requires the use of transparent notes in another voice.

\version "2.24"

\score {
  \new Staff << 
  \new Voice \relative c' {
    \time 2/4
    <c d g b d>2
  }
  \new Voice \relative c' {
    \hideNotes
    \arpeggioBracket
    \once \override NoteColumn.ignore-collision = ##t
    <c d>2\arpeggio
  }
  >>
  \layout { ragged-right = ##t }
}