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

« back to all changes in this revision

Viewing changes to input/regression/volta-multi-staff.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
\header {
2
2
 
3
 
    texidoc = "By setting @code{voltaOnThisStaff}, repeats can be put
4
 
    on more staves in a score."
5
 
 
6
 
}
7
 
\version "2.2.0"
8
 
 
9
 
 
10
 
vmus = \notes { \repeat volta 2 c1 \alternative { d e } } 
11
 
 
12
 
\score  {
13
 
 
14
 
    \notes \relative c'' <<
15
 
        \new StaffGroup <<
16
 
            \context Staff \vmus
17
 
            \new Staff \vmus
18
 
        >>
19
 
        \new StaffGroup <<
20
 
            \new Staff <<
21
 
                \set Staff.voltaOnThisStaff = ##t
22
 
                \vmus >>
23
 
            \new Staff \vmus
24
 
        >>
25
 
    >>
26
 
 
27
 
    \paper { raggedright = ##t }
28
 
}
 
3
  texidoc = "By setting @code{voltaOnThisStaff}, repeats can be put
 
4
    also over other staves than the topmost one in a score."
 
5
 
 
6
}
 
7
 
 
8
\layout { ragged-right = ##t }
 
9
\version "2.7.39"
 
10
 
 
11
 
 
12
vmus =  { \repeat volta 2 c1 \alternative { d e } } 
 
13
 
 
14
 
 
15
 
 
16
\relative c'' <<
 
17
  \new StaffGroup <<
 
18
    \context Staff \vmus
 
19
    \new Staff \vmus
 
20
  >>
 
21
  \new StaffGroup <<
 
22
    \new Staff <<
 
23
      \set Staff.voltaOnThisStaff = ##t
 
24
      \vmus >>
 
25
    \new Staff \vmus
 
26
  >>
 
27
>>
 
28
 
 
29
 
 
30