%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt)),quote,staffsize=18]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)

#(set-global-staff-size 18)

\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
  line-width = 160\mm - 2.0 * 10.16\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "en/included/chord-names-jazz.ly"
\sourcefileline 0
\version "2.16.0"

\header {
  texidoc = "
This list demonstrates the support for jazz chord names, using Klaus
Ignatzek's notation.
"
}

chs = \transpose c' c' {
  % The chord order is the same as in Ignatzek's book.
  <c e g>1
  <c es g>  % m = minor triad
  <c e gis>
  <c es ges>

  <c e g bes>
  <c es g bes>
  <c e g b>  % triangle = maj
  <c es ges beses>
  <c es ges b> \break

  <c e gis bes>
  <c es g b>
  <c e gis b>
  <c es ges bes>

  <c e g a>  % 6 = major triad with added sixth
  <c es g a>  % m6 = minor triad with added sixth
  <c e g bes d'>
  <c es g bes d'> \break  % the book has a typo here, showing 'e'

  <c es g bes d' f' a' >
  <c es g bes d' f' >
  <c es ges bes d' >
  <c e g bes des' >

  <c e g bes dis'>
  <c e g bes d' f'>
  <c e g bes d' fis'>
  <c e g bes d' f' a'> \break

  <c e g bes d' fis' as'>
  <c e gis bes dis'>
  <c e g bes dis' fis'>
  <c e g bes d' f' as'>

  <c e g bes des' f' as'>
  <c e g bes d' fis'>
  <c e g b d'>
  <c e g b d' f' a'> \break

  <c e g b d' fis'>
  <c e g bes des' f' a'>
  <c f g>
  <c f g bes>

  <c f g bes d'>
  <c e g d'>  % add9
  <c es g f'>

  % Some more chords.
  <c e g b fis'>  % Lydian
  <c e g bes des' ees' fis' aes'>  % altered chord
}

\score {
  <<
    \chords { \chs }
    \new Staff \transpose c c' { \chs }
  >>
  \layout {
    \context {
      \Score
      \remove Bar_number_engraver
    }
  }
}



% ****************************************************************
% end ly snippet
% ****************************************************************
