lilypond-user
[Top][All Lists]
Advanced

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

AW: Arpeggio


From: Dr. Bernhard Kleine
Subject: AW: Arpeggio
Date: Sun, 21 Dec 2014 21:13:52 +0100

Then there is an error in the manual of 2.9.15.

 

Kind regards

Bernhard

 

Von: Brent Boylan [mailto:address@hidden
Gesendet: Sonntag, 21. Dezember 2014 21:05
An: Dr. Bernhard Kleine
Betreff: RE: Arpeggio

 

It looks like the set line needs to be inside the double angle brackets as the example shows. Haven't tried your excerpt to verify, though.

Merry Christmas,

Brent Boylan


From: Dr. Bernhard Kleine
Sent: ‎12/‎21/‎2014 12:57 PM
To: address@hidden
Subject: Arpeggio

I am lost: I have the example in manual 1.3.3. (german, arpeggio over different systems

\new PianoStaff \relative c'' <<

  \set PianoStaff.connectArpeggios = ##t

  \new Staff {

    <c e g c>4\arpeggio

    <g c e g>4\arpeggio

    <e g c e>4\arpeggio

    <c e g c>4\arpeggio

  }

  \new Staff {

    \clef bass

    \repeat unfold 4 {

      <c,, e g c>4\arpeggio

    }

  }

>> 

 

My code is the following: (exerpt)

choirPart = \new ChoirStaff

  <<

    \new Staff = "Frauen" \with {

        midiInstrument = "choir aahs"

        instrumentName = \markup \center-column { "Sopran" "Alt" }

      } <<

          \new Voice = "soprano"    { \voiceOne \soprano }

          \new Voice = "alto"       { \voiceTwo \alto }

          \new Voice = "sopranoTwo" { \voiceThree \sopranoTwo}

          \new Voice = "altoTwo"    { \voiceFour \altoTwo }

        >>

    \new Lyrics \with {

        alignAboveContext = "Frauen"

        } \lyricsto "sopranoTwo" \verseSoprano

 

    \new Lyrics \with {

        \override VerticalAxisGroup.staff-affinity = #CENTER

      } \lyricsto "alto" \verse

    \new Lyrics \with {

        \override VerticalAxisGroup.staff-affinity = #UP

      } \lyricsto "altoTwo" \verseAlto

 

    \new Staff = "Maenner" \with {

        midiInstrument = "choir aahs"

        instrumentName = \markup \center-column { "Tenor" "Bass" }

       } <<

          \clef bass

          \new Voice = "tenor"    { \voiceOne \tenor }

          \new Voice = "bass"     { \voiceTwo \bass }

          \new Voice = "tenorTwo" { \voiceThree \tenorTwo }

          \new Voice = "bassTwo"  { \voiceFour \bassTwo }

        >>

   \new Lyrics \with {

          alignAboveContext = "Maenner"

        } \lyricsto "tenorTwo" \verseTenor

  

    \new Lyrics \with { }

        \lyricsto "bassTwo" \verseBasso

 

  >>

organPart = \new PianoStaff \with {

    instrumentName = "Orgel"

   }

    \set PianoStaff.connectArpeggios = ##t <<<<<<<<<<<<<

  <<

      \new Staff = "up" \with {

        midiInstrument = "church organ"

       } << \rightOne \\ \rightTwo >>

 

      \new Staff = "down" \with {

        midiInstrument = "church organ"

      } { \clef bass << \leftOne \\ \leftTwo \\ \leftthree >> }

    >>

 

\score {

  <<

    \choirPart

    \organPart

  >>

  \layout {

    \context {

      \PianoStaff

      \consists #Span_stem_engraver

      }

    }

  \midi {

    \tempo 4=100

    }

 

 

I labelled the offending line <<< and would like to know where to place it.

In the present position it raises an error.

Kind regards

 

Bernhard


reply via email to

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