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

« back to all changes in this revision

Viewing changes to input/regression/breathing-sign.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
 
#(ly:set-option 'old-relative)
2
 
\version "2.2.0"
 
1
\version "2.7.39"
3
2
\header{
4
 
texidoc="
 
3
  texidoc="
5
4
Breathing signs are available in different tastes: commas (default),
6
5
ticks, vees and `railroad tracks' (caesura)."
7
 
 }
8
 
 
9
 
 
10
 
\score {
11
 
 
12
 
  {
13
 
    %
14
 
    % Modern notation:
15
 
    %
16
 
    \new Staff {
17
 
      \notes \relative c'' {
18
 
        \key es \major \time 3/4
19
 
 
20
 
        % this bar contains no \breathe
21
 
        <<
22
 
          { g4 as g } \\
23
 
          { es4 bes es }
24
 
        >> |
25
 
 
26
 
        % by default, \breathe uses the rcomma, just as if saying:
27
 
        % \override BreathingSign  #'text =
28
 
        %       #(make-musicglyph-markup "scripts-rcomma")
29
 
        <<
30
 
          { g4 as g } \\
31
 
          { es4 \breathe bes es }
32
 
        >> |
33
 
 
34
 
        % rvarcomma and lvarcomma are variations of the default rcomma
35
 
        % and lcomma
36
 
 
37
 
        % N.B.: must use Staff context here, since we start a Voice below
38
 
        \override Staff.BreathingSign  #'text =
39
 
                #(make-musicglyph-markup "scripts-rvarcomma")
40
 
        <<
41
 
          { g4 as g } \\
42
 
          { es4 \breathe bes es }
43
 
        >> |
44
 
 
45
 
        % wedge
46
 
        \override BreathingSign  #'text =
47
 
                 #(make-musicglyph-markup "scripts-upbow")
48
 
        es8 d es f g8 \breathe f |
49
 
 
50
 
        % caesura
51
 
        \override BreathingSign  #'text =
52
 
                 #(make-musicglyph-markup "scripts-caesura")
53
 
        es8[ d] \breathe  es[ f g f] |
54
 
        es2 r4 \bar "||" \break
55
 
      }
 
6
}
 
7
 
 
8
 
 
9
{
 
10
  %% Modern notation:
 
11
  \new Staff {
 
12
    \relative c'' {
 
13
      \key es \major \time 3/4
 
14
 
 
15
      %% this bar contains no \breathe
 
16
      <<
 
17
        { g4 as g } \\
 
18
        { es4 bes es }
 
19
      >> |
 
20
 
 
21
      %% by default, \breathe uses the rcomma, just as if saying:
 
22
      %% \override BreathingSign  #'text =
 
23
                                %       #(make-musicglyph-markup "scripts.rcomma")
 
24
      <<
 
25
        { g4 as g } \\
 
26
        { es4 \breathe bes es }
 
27
      >> |
 
28
 
 
29
      %% rvarcomma and lvarcomma are variations of the default rcomma
 
30
      %% and lcomma
 
31
 
 
32
      %% N.B.: must use Staff context here, since we start a Voice below
 
33
      \override Staff.BreathingSign  #'text =
 
34
      #(make-musicglyph-markup "scripts.rvarcomma")
 
35
      <<
 
36
        { g4 as g } \\
 
37
        { es4 \breathe bes es }
 
38
      >> |
 
39
 
 
40
      %% wedge
 
41
      \override BreathingSign  #'text =
 
42
      #(make-musicglyph-markup "scripts.upbow")
 
43
      es8 d es f g8 \breathe f |
 
44
 
 
45
      %% caesura
 
46
      \override BreathingSign  #'text =
 
47
      #(make-musicglyph-markup "scripts.caesura")
 
48
      es8[ d] \breathe  es[ f g f] |
 
49
      es2 r4 \bar "||" \break
56
50
    }
57
51
  }
58
52
}