Re: How to engrave a simple three-voice song in a single staff

2018-08-11 Thread Jakob Schöttl
Hi Lukas,

Thank you, that was exactly what I was looking for!

Best, Jakob

Am 10.08.2018 um 16:20 schrieb Lukas-Fabian Moser:
> Hi Jakob,
>
>> I'd like to have a simple three-voice traditional song in a single
>> staff.
>>
>> - same notes should be merged to one note
>> - the upper two voice should be merged to chords
>>
>
> Maybe something like:
>
> \version "2.19.80"
>
>
> \new Staff \with { printPartCombineTexts = ##f }
>   <<
>     \partcombine
>     \relative g' {
>   \partial 4 g4
>   g4 c8 b c4
>     }
>     \relative g' {
>   \partial 4 g4
>   e4. f8 g4
>     }
>   \\
>    \relative g' {
>  \partial 4 g4
>  c,4. d8 e4
>    }
>   >>
>
>
> But expect trouble if rhythms start to become independent.
>
> Best
> Lukas
>
> PS. I left the \partial in each voice - while it's unneccesary here,
> it might be useful to have it in each voice if you want to extract parts.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to engrave a simple three-voice song in a single staff

2018-08-10 Thread ArnoldTheresius
Jakob Schöttl wrote
> Hello everyone,
> 
> I'd like to have a simple three-voice traditional song in a single staff.
> 
> - same notes should be merged to one note
> - the upper two voice should be merged to chords
> ...

I would try to join the first two voices into one voice, displaying in style
'voiceOne',
and the third voice is going to be displayed in style 'voiceTwo'.

e.g.:
MyFirstVoice  = \relative { \partial 4 g'4 c1 }
MySecondVoice = \relative { \partial 4 g'4 g1 }
MyThirdVoice  = \relative { \partial 4 g'4 e1 }

\new Staff <<
  \new Voice { \voiceOne 
\set Staff.aDueText = #""
\partcombine \MyFirstVoice \MySecondVoice
  }
  \new Voice { \voiceTwo
\MyThirdVoice
  } >>

ArnoldTheresius





--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to engrave a simple three-voice song in a single staff

2018-08-10 Thread Lukas-Fabian Moser

Hi Jakob,


I'd like to have a simple three-voice traditional song in a single staff.

- same notes should be merged to one note
- the upper two voice should be merged to chords



Maybe something like:

\version "2.19.80"


\new Staff \with { printPartCombineTexts = ##f }
  <<
    \partcombine
    \relative g' {
  \partial 4 g4
  g4 c8 b c4
    }
    \relative g' {
  \partial 4 g4
  e4. f8 g4
    }
  \\
   \relative g' {
 \partial 4 g4
 c,4. d8 e4
   }
  >>


But expect trouble if rhythms start to become independent.

Best
Lukas

PS. I left the \partial in each voice - while it's unneccesary here, it 
might be useful to have it in each voice if you want to extract parts.


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


How to engrave a simple three-voice song in a single staff

2018-08-10 Thread Jakob Schöttl
Hello everyone,

I'd like to have a simple three-voice traditional song in a single staff.

- same notes should be merged to one note
- the upper two voice should be merged to chords

This is how it should look like:

\new Staff \relative c'' <<
  \new Voice { \voiceOne   \partial 4 g4   }
  \new Voice { \voiceTwo   \partial 4 g4  e }
>>



This is how I would like to write the music: in three separate voices.

\new Staff \relative c'' <<
  \new Voice { \voiceOne   \partial 4 g4  c }
  \new Voice { \voiceThree \partial 4 g4  g }
  \new Voice { \voiceTwo   \partial 4 g4  e }
>>



Is it possible to get the above result while writing each voice
indepentently?

Best Regards, Jakob

PS: \version "2.19.82"

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user