Advertisement
Guest User

Antidotum Tarantulae (LilyPond code)

a guest
Aug 26th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.02 KB | None | 0 0
  1. % lilypond score
  2.  
  3. \header {
  4.  title = "Antidotum Tarantulae"
  5.  composer = "Atanasius Kircher (1673)"
  6. }
  7. \score {
  8.  \new StaffGroup <<
  9.    \new Staff
  10.    \relative f {
  11.      \time 2/2
  12.      \repeat volta 2 {
  13.        e''4. e8 d4 g8 f
  14.        e8 c f e d4. e8
  15.        f4 a, a gis
  16.        a1
  17.      }
  18.      \repeat volta 2 {
  19.        a'4. a8 g4 a8 g
  20.        f8 d g f e4. e8
  21.        f8 e d c b4. b8
  22.        a1 \fermata
  23.      }
  24.  
  25.    }
  26.  
  27.    \new Staff
  28.    \relative f {
  29.      \time 2/2
  30.      \clef "G_8"
  31.      \repeat volta 2 {
  32.        g4 c2 b4
  33.        c2 b4. c8
  34.        d4 c8 b a4 b
  35.        a1
  36.      }
  37.      \repeat volta 2 {
  38.        c4 d2 c4~
  39.        c4 b c8 g a4~
  40.        a4 b8 a a4 gis
  41.        a1 \fermata
  42.      }
  43.  
  44.    }
  45.  
  46.    \new Staff
  47.    \relative f {
  48.      \time 2/2
  49.      \clef bass
  50.      \repeat volta 2 {
  51.        c2 g'
  52.        c,2 g'
  53.        d2 e
  54.        a,1
  55.      }
  56.      \repeat volta 2 {
  57.        f'2 e
  58.        d2 c
  59.        d2 e
  60.        a,1 \fermata
  61.      }
  62.  
  63.    }
  64.  >>
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement