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

« back to all changes in this revision

Viewing changes to input/test/part-combine.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
 
 
2
 
\version "2.2.0"
3
 
 
4
 
\header{ texidoc="@cindex Part Combine
5
 
In orchestral scores and hymns, voices are traditionally combined into
6
 
one staff.  LilyPond has a part combiner that combines, or separates, two
7
 
voices according to the actual rhythm and pitch.  Configurable texts, such 
8
 
as ``solo'' and ``@`a2'', are typeset automatically in appropriate
9
 
places. "
10
 
}
11
 
 
12
 
\score{
13
 
   \notes \context Staff = flauti <<
14
 
    \time 4/4
15
 
    \partcombine
16
 
    \relative c'' {
17
 
      c4 d e f | b,4 d c d | r2 e4 f | c4 d e f |
18
 
      c4 r e f | c4 r e f | c4 r a r | a a r a |
19
 
      a2 \set soloADue = ##f a |
20
 
    }
21
 
    \relative c'' {
22
 
      g4 b d f | r2 c4 d | a c c d | a4. b8 c4 d
23
 
      c r e r | r2 s2 | a,4 r a r | a r r a |
24
 
      a2 \set soloADue = ##f a |
25
 
    }
26
 
  >>
27
 
  \paper{
28
 
        raggedright = ##t
29
 
  }
30
 
}
31
 
 
32