\version "2.18.2"

systemhoehe = 10
customvar = 40
customratio = 2
seitenhoehe = #(* systemhoehe customratio)
\header{
}

\paper{
  annotate-spacing = ##f
  indent=0\mm
  short-indent = 0\mm
  paper-width = 150\mm
  %line-width=120\mm
  oddFooterMarkup=##f
  evenFooterMarkup=##f
  oddHeaderMarkup=##f
  evenHeaderMarkup = ##f
  bookTitleMarkup = ##f
  scoreTitleMarkup = ##f
  print-page-number = ##f
  left-margin = 0
  right-margin = 0
  top-margin = -5\pt
  bottom-margin = 0
  paper-height = 50\pt %#(* seitenhoehe 1\pt)
  top-system-spacing.basic-distance = 15\pt
  markup-system-spacing.basic-distance = 0\pt
  top-markup-spacing.basic-distance = 0\pt
  system-system-spacing.basic-distance = 200\pt
}

\score{
  \layout {
  \context {
    \Score
    \remove "Bar_number_engraver"
%
%   %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%   % Here you adjust the distance between the notes,   %
%   % how many lines you need. If your song syllables   %
%   % are too dense, you need to increase the distance. %
%   % You should increase/decrease it by factor 2.      %
%   % Currently it is 1/60. Next up is 1/120, next down %
%   % 1/30. From there you can do a fine adjustment.    %
%   %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
    \override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/50)
  }
  #(define after-title-space (* 2 cm))
  }
%
%%%%%%%%%%%%%%%%%%
% Music is here: %
%%%%%%%%%%%%%%%%%%
%
  \new Staff <<
    \new Voice{
      \relative c''{ g4 e4 e2 | f4 d4 d2 | c4 d4 e4 f4 | g4 g4 g2 |
               g4 e4 e2 | f4 d4 d2 | c4 e4 g4 g4 | c,1 |
               d4 d4 d4 d4 | d4 e4 f2 | e4 e4 e4 e4 | e4 f4 g2 |
                g4 e4 e2| f4 d4 d2| c4 e4 g4 g4 | c,1 \bar "|."
      }
    }>>
}