From: David Kastrup Date: Sun, 2 Apr 2017 15:52:28 +0000 (+0200) Subject: Issue 5114/3: Add regtest for \voices X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=93be41a1622bc33a01719d1d75af3dca40d75354;p=lilypond.git Issue 5114/3: Add regtest for \voices --- diff --git a/input/regression/voices-command.ly b/input/regression/voices-command.ly new file mode 100644 index 0000000000..86c98019bd --- /dev/null +++ b/input/regression/voices-command.ly @@ -0,0 +1,19 @@ +\version "2.19.59" + +\header { + texidoc = "The @code{\\voices} command can be used for continuing voices +and changing the order of @code{\\voiceOne}@dots{}@code{\\voiceFour} style +overrides." +} + +\layout { ragged-right = ##t } + +{ + \time 2/4 + \new Voice = "sop" { + a'2~ | + \voices 1,"sop" << e''2 \\ { \voiceTwo a'2~ \oneVoice } >> + a'2 + } + \voices 1,3,4,2 << a''2 \\ e''2 \\ c''2 \\ a'2 >> +}