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

« back to all changes in this revision

Viewing changes to input/regression/spacing-multi-tuplet.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
 
\header{
3
 
texidoc = "Concurrent tuplets should be equidistant on all staffs.
4
 
 
5
 
Note that this only spaces correctly (exactly) when @code{raggedright}
6
 
is enabled. For a non-@code{raggedright} case, it still shows a bug: 
7
 
uneven spacing. 
8
 
"  }
9
 
 
10
 
 
11
 
 
12
 
multipart = \notes \relative c'{ 
13
 
    \context StaffGroup << 
14
 
                \new Staff  \context Voice { 
15
 
                   \times 2/10 {  c8[ c c c c c c c c c] } 
16
 
                   \times 2/10 {  c[  c c c c c c c c c] } 
17
 
                }
18
 
                \new Staff  \context Voice { 
19
 
                   \times 2/11 {  c8[ c c c c c c c c c c] } 
20
 
                   \times 2/11 {  c[  c c c c c c c c c c] } 
21
 
                }
22
 
            >>
23
 
        }
24
 
    
25
 
\score{
26
 
    \notes { 
27
 
        \multipart 
28
 
    }
29
 
 
30
 
%    \paper { raggedright = ##t }
31
 
 
32
 
}
 
1
\version "2.7.39" \header{
 
2
 
 
3
 
 
4
  texidoc = "Concurrent tuplets should be equidistant on all staffs.
 
5
Such equidistant spacing is it at odds with elegant engraver spacing;
 
6
hence it must be switched on explicitly with the
 
7
@code{uniform-stretching} property of @code{SpacingSpanner}.
 
8
"
 
9
 
 
10
}
 
11
 
 
12
 
 
13
 
 
14
\relative c' { 
 
15
  \new Score \with
 
16
  {
 
17
    \override SpacingSpanner #'uniform-stretching = ##t 
 
18
  }
 
19
  \context StaffGroup << 
 
20
    \new Staff  \context Voice { 
 
21
      \times 2/10 {  c8[ c c c c c c c c c] } 
 
22
      \times 2/10 {  c[  c c c c c c c c c] } 
 
23
    }
 
24
    \new Staff  \context Voice { 
 
25
      \times 2/11 {  c8[ c c c c c c c c c c] } 
 
26
      \times 2/11 {  c[  c c c c c c c c c c] } 
 
27
    }
 
28
  >>
 
29
}
 
30
 
33
31
 
34
32