Merge branch 'maint'
[org-mode.git] / testing / examples / ob-lilypond-test.org
blobcd8587aeaad06d465979b7f6c93e1d2f3f665bc5
1 * Test org lilypond file
3 This is a simple file for test purposes
5 ** LilyPond Version
7 #+begin_src lilypond
8   
9 \version "2.12.3"
11 #+end_src 
13 ** DONE lilypond block for test purposes
15 #+begin_src lilypond
16   
17   \score {
18     \relative c' {
19       c8 d e f g a b c |
20       b a g f e d c4   |
21     }
22    
23 #+end_src
25 #+begin_src lilypond
26   
27     \layout {
28       }
29       \midi {
30         \context {
31           \Score
32           tempoWholesPerMinute = #(ly:make-moment 150 4)
33         }
34       }
35     }
36   
37 #+end_src