]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/voices-command.ly
New upstream version 2.19.65
[lilypond.git] / input / regression / voices-command.ly
1 \version "2.19.59"
2
3 \header {
4   texidoc = "The @code{\\voices} command can be used for continuing voices
5 and changing the order of @code{\\voiceOne}@dots{}@code{\\voiceFour} style
6 overrides."
7 }
8
9 \layout { ragged-right = ##t }
10
11 {
12   \time 2/4
13   \new Voice = "sop" {
14     a'2~ |
15     \voices 1,"sop" << e''2 \\ { \voiceTwo a'2~ \oneVoice } >>
16     a'2
17   }
18   \voices 1,3,4,2 << a''2 \\ e''2 \\ c''2 \\ a'2 >>
19 }