lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Multiple voices Stem


From: Eluze
Subject: Re: Multiple voices Stem
Date: Tue, 08 Jan 2013 17:52:41 +0100
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Thunderbird/17.0


Am 08.01.2013 14:58, schrieb EmilLask:
This is what I want to.

But, is there  a better way to do it?




I'm not familiar with parallel input, but transforming your code - the first 2 voices in a chord - you would get (with no overrides or reverts needed):

\language italiano
voiceA = {
  <fa re>4. <fa re>8 |
  <mi re>4 <mi dod>8 <mi dod>8 |
  <fa re >4 <sol mi> 8 <fa re> |
  <fa re>4 <mi dod> |
  <fa re>4. <fa re>8 |
  <mi do>8 r8 r8 <la do,> |
}
voiceB = {
  \voiceTwo
  re16 la re mi fa re fa sol |
  la16 sib la sold la la, la' sold |
  sol16 fa mi re dod la re fa |
  la16 sold la sold la sol fa mi |
  re16 la re mi fa re fa sol |
  la16 si do si la sol fa mi |
}
\score{
  \new Staff {
    \key fa \major
    \time 2/4
    <<
      \new Voice { \voiceOne \relative do'' \voiceA }
      \new Voice { \voiceTwo \relative do'  \voiceB }
    >>
  }
}

Eluze





reply via email to

[Prev in Thread] Current Thread [Next in Thread]