Jump to content

Using \arpeggioBracket to make divisi more visible: Difference between revisions

From LilyPond wiki
m New category
Tags: Mobile edit Mobile web edit
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
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> command 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">
<lilypond version="2.24">
Line 28: Line 28:
     >>
     >>
   }
   }
  \layout { ragged-right = ##t }
}
}
</lilypond>
</lilypond>


[[Category:Expressive marks]]
[[Category:Expressive marks]]
[[Category:Vocal music]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Vocal music]]
[[Category:Snippet]]
[[Category:Snippet]]

Latest revision as of 12:34, 9 December 2025

The \arpeggioBracket command 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 "|."
      }      
    >>
  }
}