\version "2.18.2"

\header {
  % Voreingestellte LilyPond-Tagline entfernen
  tagline = ##f
}

global = {
  \key c \major
  \time 4/4
}

scoreAPiccolo = \relative c'' {
  \global
  \transposition c''
  % Die Noten folgen hier.
  
}

scoreAFlute = \relative c'' {
  \global
  % Die Noten folgen hier.
  
}

scoreAOboe = \relative c'' {
  \global
  % Die Noten folgen hier.
  
}

scoreAClarinet = \relative c'' {
  \global
  \transposition bes
  % Die Noten folgen hier.
  
}

scoreABassoon = \relative c {
  \global
  % Die Noten folgen hier.
  
}

scoreAHornF = \relative c'' {
  \global
  \transposition f
  % Die Noten folgen hier.
  
}

scoreATrumpetC = \relative c'' {
  \global
  % Die Noten folgen hier.
  
}

scoreATrombone = \relative c {
  \global
  % Die Noten folgen hier.
  
}

scoreATimpani = \relative c {
  \global
  % Die Noten folgen hier.
  
}

scoreAViolinI = \relative c'' {
  \global
  % Die Noten folgen hier.
  
}

scoreAViolinII = \relative c'' {
  \global
  % Die Noten folgen hier.
  
}

scoreAViola = \relative c' {
  \global
  % Die Noten folgen hier.
  
}

scoreACello = \relative c {
  \global
  % Die Noten folgen hier.
  
}

scoreAContrabass = \relative c {
  \global
  % Die Noten folgen hier.
  
}

scoreAPiccoloPart = \new Staff \with {
  instrumentName = "Piccolo-Flöte"
  midiInstrument = "piccolo"
} \scoreAPiccolo

scoreAFlutePart = \new Staff \with {
  instrumentName = "Flöte"
  midiInstrument = "flute"
} \scoreAFlute

scoreAOboePart = \new Staff \with {
  instrumentName = "Oboe"
  midiInstrument = "oboe"
} \scoreAOboe

scoreAClarinetPart = \new Staff \with {
  instrumentName = "Klarinette"
  midiInstrument = "clarinet"
} \scoreAClarinet

scoreABassoonPart = \new Staff \with {
  instrumentName = "Fagott"
  midiInstrument = "bassoon"
} { \clef bass \scoreABassoon }

scoreAHornFPart = \new Staff \with {
  instrumentName = "Horn in F"
  midiInstrument = "french horn"
} \scoreAHornF

scoreATrumpetCPart = \new Staff \with {
  instrumentName = "Trompete in C"
  midiInstrument = "trumpet"
} \scoreATrumpetC

scoreATrombonePart = \new Staff \with {
  instrumentName = "Posaune"
  midiInstrument = "trombone"
} { \clef bass \scoreATrombone }

scoreATimpaniPart = \new Staff \with {
  instrumentName = "Pauken"
  midiInstrument = "timpani"
} { \clef bass \scoreATimpani }

scoreAViolinIPart = \new Staff \with {
  instrumentName = "Violine I"
  midiInstrument = "violin"
} \scoreAViolinI

scoreAViolinIIPart = \new Staff \with {
  instrumentName = "Violine II"
  midiInstrument = "violin"
} \scoreAViolinII

scoreAViolaPart = \new Staff \with {
  instrumentName = "Bratsche"
  midiInstrument = "viola"
} { \clef alto \scoreAViola }

scoreACelloPart = \new Staff \with {
  instrumentName = "Cello"
  midiInstrument = "cello"
} { \clef bass \scoreACello }

scoreAContrabassPart = \new Staff \with {
  instrumentName = "Kontrabass"
  midiInstrument = "contrabass"
} { \clef bass \scoreAContrabass }

\score {
  <<
    \scoreAPiccoloPart
    \scoreAFlutePart
    \scoreAOboePart
    \scoreAClarinetPart
    \scoreABassoonPart
    \scoreAHornFPart
    \scoreATrumpetCPart
    \scoreATrombonePart
    \scoreATimpaniPart
    \scoreAViolinIPart
    \scoreAViolinIIPart
    \scoreAViolaPart
    \scoreACelloPart
    \scoreAContrabassPart
  >>
  \layout { }
  \midi {
    \tempo 4=100
  }
}
