Volta below chords: Difference between revisions
Appearance
m New category Tags: Mobile edit Mobile web edit |
mNo edit summary |
||
| Line 1: | Line 1: | ||
By adding the <code>Volta_engraver</code> to the relevant staff, volte can be put | By adding the <code>Volta_engraver</code> to the relevant staff, volte can be put below chords. | ||
<lilypond version="2.24"> | <lilypond version="2.24"> | ||
\score { | \score { | ||
<< | << | ||
\chords { | \chords { c1 c1 } | ||
\new Staff \with { \consists "Volta_engraver" } | |||
\new Staff \with { | |||
{ | { | ||
\repeat volta 2 { c'1 | \repeat volta 2 { c'1 \alternative { c' } } | ||
} | } | ||
>> | >> | ||
| Line 25: | Line 19: | ||
</lilypond> | </lilypond> | ||
[[Category:Contexts and engravers]] | |||
[[Category:Repeats]] | [[Category:Repeats]] | ||
[[Category:Staff notation]] | [[Category:Staff notation]] | ||
Revision as of 10:52, 4 December 2025
By adding the Volta_engraver to the relevant staff, volte can be put below chords.
\version "2.24"
\score {
<<
\chords { c1 c1 }
\new Staff \with { \consists "Volta_engraver" }
{
\repeat volta 2 { c'1 \alternative { c' } }
}
>>
\layout {
\context {
\Score
\remove "Volta_engraver"
}
}
}