\version "2.12.3"
\header{
  title="РќР° РєСЂР°РµС€РєРµ Р»РµС‚Р°"
  poet="Р’.РџРѕРїРѕРІ"
  composer="Рђ.Р”СѓР»РѕРІ"
  tagline="РќР°Р±СЂР°РЅРѕ РІ LilyPond 2.12.3"
}

%Р‘СѓРєРІРµРЅРЅС‹Рµ РѕР±РѕР·РЅР°С‡РµРЅРёСЏ, РїСЂРёРЅСЏС‚С‹Рµ РІ РєРѕРЅС‚РёРЅРµРЅС‚Р°Р»СЊРЅРѕР№ Р•РІСЂРѕРїРµ:
%H --- СЃРё, B --- СЃРё-Р±РµРјРѕР»СЊ.
\include "deutsch.ly"

% Ajust size
%#(set-global-staff-size 30.0)

\paper  {
  myStaffSize = #20
  #(define fonts
    (make-pango-font-tree "Linux Libertine"
                          "Droid Sans"
                          "Droid Sans Mono"
                           (/ myStaffSize 20)))
}

global = {
  \key a \minor
  \time 6/8
  \tempo 4 = 120
}

voiceOne = \new Voice = "one" { \relative c'' {
  \partial 4 a,8 h
  %\set Score.repeatCommands = #(list (list 'volta '()) 'start-repeat)
  c4 ~ c8 r8 d f
  e4 ~ e8 r8 a h
  c4 ~ c8 r8 h8 a
  d,4 ~ d8 d4 c8
  h4 ais4. h8
  d4 c4 c4
  h2 c8 h8
  e4 e8 r4
}}

\score{
  \new StaffGroup <<
    %\Chords
    \new Staff
    <<
      \global
      \voiceOne
      %\verses
    >>
    
    % \new Staff
    % <<
    %   \global
    %   \voiceTwo
    %   %\versesTwo
    % >>
  >>
  \layout{
    \context {
      \Score
      \remove "Bar_number_engraver"
    }
  }
}
\score{
  \unfoldRepeats {
    \new StaffGroup <<
      \new Staff
      <<
        \set Staff.midiInstrument = "piano"
        \global
        \voiceOne
        %\verses
      >>
    
      % \new Staff
      % <<
      %   \set Staff.midiInstrument = "flute"
      %   \global
      %   \voiceTwo
      % >>
    >>
  }
  \midi{}
}
