Schon gelöst: Taktlinien durchziehen

Begonnen von Wabbe, Donnerstag, 3. Juni 2021, 11:14

« vorheriges - nächstes »

Wabbe

Liebe Leute,
die Taktlinien möchte ich gern durchziehen, und gefunden habe ich, dass das mit "\new StaffGroup << >>" geht.
Leider finde ich nicht heraus, wo ich das wie in meiner Datei notieren muss. Vielleicht kann jemand helfen?
Danke und beste Grüße

=============================
\version "2.22.0"

\header {
  title = "Etuede"
  composer = "L. Spohr"
}

global = {
  \key c \major
  \numericTimeSignature
  \time 2/4
  \partial 8
  \tempo "Allegretto"



}

scoreAViolinI = \relative c'' {
  \global
  % Die Noten folgen hier.
  e,16\downbow f g8 e16 g c8 g16 c e8 d16 e c8 d16 d c8 e16
  d c8 b16 a g (a) f g e8 e16 f g8 e16 g c8 g16 c
}

scoreAViolinII = \relative c'' {
  \global
  % Die Noten folgen hier.
  r8 e, [c e c] g' [f e c] e [gis a f] e d c c16 d e8  [c e c]
}

scoreAViolinIPart = \new Staff \with {
  instrumentName = "Violine I"
  midiInstrument = "violin"
} \scoreAViolinI

scoreAViolinIIPart = \new Staff \with {
  instrumentName = "Violine II"
  midiInstrument = "violin"
} \scoreAViolinII

\score {
  <<
    \scoreAViolinIPart
    \scoreAViolinIIPart
  >>
  \layout {  }
  \midi {
    \tempo 4=100
  }
}

=============================

amateur

Im score-Bereich:

\score {
\new StaffGroup
  <<
    \scoreAViolinIPart
    \scoreAViolinIIPart
  >>

Wabbe

Ganz vielen Dank, hat natürlich sofort funktioniert!
Beste Grüße

Zitat von: amateur am Donnerstag,  3. Juni 2021, 11:30
Im score-Bereich:

\score {
\new StaffGroup
  <<
    \scoreAViolinIPart
    \scoreAViolinIIPart
  >>