10.1.5 Hälse über beide Systeme

Akkorde, die über zwei Systeme reichen, können mit dem Span_stem_engraver erstellt werden. Man muss dabei sicherstellen, dass die automatische Bebalkung die Noten nicht auf dem einen System mit Balken versieht, wenn es auf dem anderen nicht nötig wäre.

\layout {
  \context {
    \PianoStaff
    \consists "Span_stem_engraver"
  }
}

\new PianoStaff <<
  \new Staff {
    <b d'>4 r d'16\> e'8. g8 r\! |
    e'8 f' g'4
      \voiceTwo
      % Down to lower staff
      \crossStaff { e'8 e'8 } e'4 |
  }

  \new Staff {
    \clef bass
    \voiceOne
    % Up to upper staff
    \crossStaff { <e g>4 e, g16 a8. c8 } d |
    g8 f g4 \voiceTwo g8 g g4 |
  }
>>
[image of music]

Ausgewählte Schnipsel

Indicating cross-staff chords with a bracket

An non-arpeggiato bracket can indicate that notes on two different staves are to be played with the same hand. In order to do this, the PianoStaff must be set to accept cross-staff brackets.

The following example typesets measure 65 of Debussy’s prelude Les collines d’Anacapri.

\new PianoStaff <<
  \once \set PianoStaff.connectChordBrackets = ##t

  \new Staff \relative c' {
    \key b \major
    \time 6/8
    b8-.(\nonArpeggiato fis'-.\> cis-.
      e-. gis-. b-.)\!\fermata^\laissezVibrer
    \section
  }

  \new Staff \relative c' {
    \clef bass
    \key b \major
    << { <a e cis>2.\nonArpeggiato } \\
       { <a, e a,>2. } >>
    \section
  }
>>
[image of music]

Siehe auch

Schnipsel: Keyboard and other multi-staff instruments.

Referenz der Interna: Stem.


LilyPond Benutzerhandbuch v2.25.34 (development-branch).