%%
%% lilypond source text file
%%
%% for future compatibility
\version "2.11.65"
%%
\include "deutsch.ly"
%%
%%
partone = \relative c' {
  \clef treble
  \time 4/4
  \key c \major
  \crescTextCresc
  r2 \times 2/3 {r8 g'-.\<[ g-.] g-.[ h-. d-.]}
  g4\ff g4  r2 |
  \bar "|."
}
parttwo = \relative c' {
  \clef treble
  \time 4/4
  \key c \major
  \crescTextCresc
  r2 \times 2/3 {r8 g'-.\<[ g-.] g-.[ h-. d-.]}
  c2\ff r2 |
  \bar "|."
}
\score {
  <<
    \new Staff {
      \set Staff.instrumentName = "part one"
      \partone
    }
    \new Staff {
      \set Staff.instrumentName = "part two"
      \parttwo
    }
    \new Staff \with { printPartCombineTexts = ##f } {
      %%\set Staff.instrumentName = "part one and two"
       \override Staff.InstrumentName #'self-alignment-X = #CENTER
       \set Staff.instrumentName = \markup \center-column {
	 \line {part one and two}
	 "mistaken?"
       }
      \partcombine \partone \parttwo
    }
    >>
  \layout {
    #(set-default-paper-size "a4")
    indent = 5\cm
  }
}
%% end of bugreport.ly %%
