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

« back to all changes in this revision

Viewing changes to input/test/partial-blank.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
1
 
2
 
\version "2.2.0"
 
2
\version "2.7.39"
3
3
% check with invisible-notes or blank-notes.  possible rename. -gp
4
4
\header{ texidoc = "@cindex Partial Blank
5
5
When entering partially typeset music (i.e. for students to be 
8
8
implemented by adding an invisible staff with a lot of fast notes. "
9
9
}
10
10
 
11
 
quickmeasure = \notes {
 
11
quickmeasure =  {
12
12
    \repeat unfold 16 c''16
13
13
}
14
14
 
15
 
mel = \notes \relative c' {c16 d16 e8 a4 g2 e8 d c2. g'1 e4 d c2}
 
15
mel =  \relative c' {c16 d16 e8 a4 g2 e8 d c2. g'1 e4 d c2}
16
16
 
17
17
\score {
18
 
\context PianoStaff \notes <<
 
18
\context PianoStaff  <<
19
19
  \new Staff <<
20
20
    \clef G
21
21
    \new Voice {\mel}
26
26
        \repeat unfold 4 \quickmeasure
27
27
    }
28
28
  >>
29
 
  \new Staff \notes {\clef F s1*4}
 
29
  \new Staff  {\clef F s1*4}
30
30
>>
31
 
\paper {}
 
31
\layout {}
32
32
}
33
33