Deutschsprachiges LilyPond-Forum

Allgemeine Fragen und Probleme => Fragen und Probleme aller Art => Thema gestartet von: erich am Montag, 11. Juli 2022, 09:44

Titel: Polyrhythmik
Beitrag von: erich am Montag, 11. Juli 2022, 09:44
Hallo allen!

Beispiel:
\version "2.23.2"
\score {
 <<
  \new Voice {\clef "bass" \time 3/2 c2 c c c c c c c c c c c}
 
  \new Voice {\clef "bass" \time 4/2 c2 c c c c c c c c c c c}
 >> 
}

in der Notendarstellung wird das 1. System nicht im 3/2-Takt dargestellt.

Wie kann man das aber erreichen?

Gruß
Erich
Titel: Antw:Polyrhythmik
Beitrag von: Rudi Guggt am Montag, 11. Juli 2022, 10:51
Hallo,

Dein gesuchtes Stichwort ist Polymetrie, das ist zu finden im Handbuch unter 1.2 Rhythmus -> 1.2.3. Rhythmen anzeigen lassen.
Da heißt es dann "Polymetrische Notation"

Gruß
Rudi
Titel: Antw:Polyrhythmik
Beitrag von: erich am Montag, 11. Juli 2022, 11:57
Hallo Rudi, vielen Dank Dir

Da das Snippet in der Dokumentation unvollständig ist, vervollständige ich hier mein Beispiel:
\version "2.23.2"
\score {
 

 <<
   \new Staff {\clef "bass" \time 3/2 c2 c c | c c c| c c c| c c c|}
  
   \new Staff {\clef "bass" \time 4/2 c2 c c c |c c c c |c c c c|}
  >>
 
 \layout {
  \context {
    \Score
    \remove Timing_translator
    \remove Default_bar_line_engraver
  }
  \context {
    \Staff
    \consists Timing_translator
    \consists Default_bar_line_engraver
  }
 }   
}

Gruß Erich