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

« back to all changes in this revision

Viewing changes to input/regression/tuplet-properties.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
2
\header {
3
 
texidoc = "Tuplet bracket formatting supports numerous options,
 
3
  texidoc = "Tuplet bracket formatting supports numerous options,
4
4
for instance, bracketed (B) and non-bracketed (NB).
5
5
"
6
6
}
7
 
 
8
 
 
9
 
\version "2.2.0"
10
 
 
11
 
 
12
 
\score { 
13
 
    \context Voice \notes\relative c'' {
14
 
 
15
 
        \times 2/3 { c'8 c,, c }
16
 
        \times 2/3 { c'8 c'' c,, }
17
 
 
18
 
        
19
 
        \times 2/3 {  c8[^"NB" c c]  }
20
 
        
21
 
        \times 2/3 { c8^"B"  c[ c]  }
22
 
        \times 2/4 { r8_"B"  c,[ c'] r8 }
23
 
        
24
 
        \override TupletBracket  #'bracket-visibility = #'if-no-beam  
25
 
        \times 2/3 {  c8[ c c]  }
26
 
        
27
 
        \override TupletBracket  #'direction = #1
28
 
        \override TupletBracket  #'number-visibility = ##f
29
 
        \times 2/3 { c8^""^""^"up, no digit"  c[ c]  }
30
 
        \revert TupletBracket #'number-visibility
31
 
 
32
 
        \override TupletBracket  #'bracket-visibility = ##t
33
 
        \override TupletBracket  #'edge-height = #'(0.0 . 0.0)
34
 
        \override TupletBracket  #'shorten-pair = #'(2.0 . 2.0)
35
 
        \times 4/6 { c_"shorter, no edges" f b  b f c}  
36
 
        \revert TupletBracket #'edge-height
37
 
        \revert TupletBracket #'shorten-pair
38
 
        \override TupletBracket  #'bracket-flare = #'(0.5 . 0.5)
39
 
        \times 2/3 { b^""^""^"angled edges" b b }
40
 
        \revert TupletBracket #'direction
41
 
        \times 2/3 { b b b }
42
 
 
43
 
    }
 
7
 
 
8
 
 
9
\version "2.7.39"
 
10
 
 
11
 
 
12
 
 
13
\context Voice \relative c'' {
 
14
 
 
15
  \times 2/3 { c'8 c,, c }
 
16
  \times 2/3 { c'8 c'' c,, }
 
17
 
 
18
  
 
19
  \times 2/3 {  c8[^"NB" c c]  }
 
20
  
 
21
  \times 2/3 { c8^"B"  c[ c]  }
 
22
  \times 2/4 { r8_"B"  c,[ c'] r8 }
 
23
  
 
24
  \override TupletBracket  #'bracket-visibility = #'if-no-beam  
 
25
  \times 2/3 {  c8[ c c]  }
 
26
  
 
27
  \tupletUp
 
28
  \override TupletNumber #'transparent = ##t
 
29
  \times 2/3 { c8^""^""^"up, no digit"  c[ c]  }
 
30
  \revert TupletNumber #'transparent
 
31
 
 
32
  \override TupletBracket  #'bracket-visibility = ##t
 
33
  \override TupletBracket  #'edge-height = #'(0.0 . 0.0)
 
34
  \override TupletBracket  #'shorten-pair = #'(2.0 . 2.0)
 
35
  \times 4/6 { c_"shorter, no edges" f b  b f c}        
 
36
  \revert TupletBracket #'edge-height
 
37
  \revert TupletBracket #'shorten-pair
 
38
  \override TupletBracket  #'bracket-flare = #'(0.5 . 0.5)
 
39
  \times 2/3 { b^""^""^"angled edges" b b }
 
40
  \tupletNeutral
 
41
  \times 2/3 { b b b }
 
42
 
44
43
}
45
44
 
 
45