Jump to content

Using \arpeggioBracket to make divisi more visible: 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:
The <code>arpeggioBracket</code> can be used to indicate the division of voices where there are no stems to provide the information. This is often seen in choral music.
The <code>arpeggioBracket</code> can be used to indicate the division of voices where there are no stems to provide the information. This is often seen in choral music.


<lilypond version="2.24.0">
<lilypond version="2.24">
\include "english.ly"
\include "english.ly"



Revision as of 18:55, 16 November 2025

The arpeggioBracket can be used to indicate the division of voices where there are no stems to provide the information. This is often seen in choral music.

\version "2.24"

\include "english.ly"

\score {
  \relative c'' {
    \key a \major
    \time 2/2
    <<
      \new Voice = "upper"
      <<
        { \voiceOne \arpeggioBracket
          a2( b2
          <b d>1\arpeggio)
          <cs e>\arpeggio ~
          <cs e>4
        }
        \addlyrics { \lyricmode { A -- men. } }
      >>
      \new Voice = "lower"
      { \voiceTwo
        a1 ~
        a
        a ~
        a4 \bar "|."
      }      
    >>
  }
  \layout { ragged-right = ##t }
}