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

« back to all changes in this revision

Viewing changes to input/regression/staff-tweak.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"
 
1
\version "2.7.39"
2
2
 
3
3
\header {
4
 
texidoc = "The staff is a grob (graphical object) which may be adjusted as well, for example, to have 6 thick lines and a slightly large @code{staff-space}.
 
4
  texidoc = "The staff is a grob (graphical object) which may be adjusted as well, for example, to have 6 thick lines and a slightly large @code{staff-space}.
5
5
However, beams remain correctly quantized."    
6
6
 
7
7
}
8
8
 
9
 
 
10
 
mus = \notes \relative c' { c4 g' d'8 d d d }
11
 
 
12
 
\score {
13
 
  \notes <<
14
 
    \new Staff {
15
 
        \override Staff.StaffSymbol  #'thickness = #2.0
16
 
        \override Staff.StaffSymbol  #'line-count = #6
17
 
        \override Staff.StaffSymbol  #'staff-space = #1.1
18
 
        \mus
19
 
    }
 
9
\layout  {
 
10
  ragged-right = ##t
 
11
}
 
12
 
 
13
 
 
14
mus =  \relative c' { c4 g' d'8 d d d }
 
15
 
 
16
 
 
17
<<
 
18
  \new Staff {
 
19
    \override Staff.StaffSymbol  #'thickness = #2.0
 
20
    \override Staff.StaffSymbol  #'line-count = #6
 
21
    \override Staff.StaffSymbol  #'staff-space = #1.1
20
22
    \mus
21
 
  >>
22
 
  \paper  {
23
 
    raggedright = ##t
24
23
  }
25
 
}
 
24
  \mus
 
25
>>
 
26
 
 
27
 
26
28