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

« back to all changes in this revision

Viewing changes to input/regression/measure-grouping.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:
2
2
\header
3
3
{
4
4
 
5
 
    texidoc = "The @code{Measure_grouping_engraver} adds triangles and
 
5
  texidoc = "The @code{Measure_grouping_engraver} adds triangles and
6
6
brackets above beats when the beats of a time signature are grouped.  "
7
7
 
8
8
}
9
9
 
10
 
\version "2.2.0"
 
10
\version "2.7.39"
11
11
 
12
12
 
13
13
%% TODO: should have 2/4 + 5/8 time sig style.
14
 
\score { \notes
 
14
 
15
15
\context Staff
16
 
         \relative c' {
17
 
             #(set-time-signature 2 4) 
18
 
             c8 a'4 a8~
19
 
             #(set-time-signature 5 8 '(3 2)) 
20
 
             a8 bes4 r8 bes8->
21
 
             \time 2/4
22
 
             c,8 g'4 g8~
23
 
             #(set-time-signature 5 8 '(3 2)) 
24
 
             g8 a4 g a4.->
25
 
         }
26
 
         \paper  {
27
 
             raggedright = ##t
28
 
             \context { \StaffContext
29
 
                           \consists "Measure_grouping_engraver"
30
 
                           }
31
 
             }
32
 
         }
 
16
\relative c' {
 
17
  #(set-time-signature 2 4) 
 
18
  c8 a'4 a8~
 
19
  #(set-time-signature 5 8 '(3 2)) 
 
20
  a8 bes4 r8 bes8->
 
21
  \time 2/4
 
22
  c,8 g'4 g8~
 
23
  #(set-time-signature 5 8 '(3 2)) 
 
24
  g8 a4 g a4.->
 
25
}
 
26
\layout  {
 
27
  ragged-right = ##t
 
28
  \context { \Staff
 
29
             \consists "Measure_grouping_engraver"
 
30
           }
 
31
}
 
32
 
33
33