~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to input/template/melody-chords.ly

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
\version "2.2.0"
2
 
 
3
 
\header {
4
 
  texidoc = "Lead sheet format: chords with melody."
5
 
}
6
 
 
7
 
harmonies = \chords {
8
 
  c4:m f:min7 g:maj c:aug d2:dim b:sus
9
 
}
10
 
 
11
 
melody = \notes \relative c' {
12
 
  f4 e8[ c] d4 g | a2 ~ a2
13
 
}
14
 
 
15
 
\score {
16
 
  \notes <<
17
 
    \context ChordNames {
18
 
        \set chordChanges = ##t
19
 
        \harmonies
20
 
    }
21
 
    \context Staff = one \melody
22
 
  >>
23
 
 
24
 
  \paper{ }
25
 
  \midi{ }
26
 
}