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

« back to all changes in this revision

Viewing changes to input/test/repeat.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
 
 
3
 
% possible rename to lyric-repeat or repeat-lyric.
4
 
 
5
 
\header{ texidoc = "@cindex Repeat Lyrics
6
 
Alternate lyrics can be used, as well as alternate notes for repeats. "
7
 
}
8
 
 
9
 
%% Syntax << { aaa } { bbb } >> seems not to work in lyrics. 
10
 
%% The notes are lyrics do not match syntactically here. - HJJ
11
 
 
12
 
\score{
13
 
        <<
14
 
                  \context Staff \notes\relative c'{ 
15
 
                          c d e f
16
 
                          \repeat "volta" 2 { g a b c }
17
 
                          \alternative { { c b a g } { f e d c } }
18
 
                  }
19
 
                  \context Lyrics \lyrics {
20
 
                          De eer- ste << { maat } { moet } >>
21
 
                          \repeat fold 2 { }
22
 
                          \alternative {
23
 
                                  { en dan twee keer } 
24
 
                                  { een koe- plet _ } 
25
 
                          }
26
 
                          en dan nog dit er ach- ter aan
27
 
                  }
28
 
        >>
29
 
        \paper{raggedright=##t}
30
 
}
31