Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. version "2.19.55"
  2. language "italiano"
  3.  
  4. soloistsMelody = relative do'' {
  5. time 2/4
  6. <mi la>16 <sol re>16 <fa do>16 <sol re>16<mi la>8 <mi la>8 si4rest
  7. }
  8.  
  9. soloistsWords = lyricmode {
  10. Por tu~in -- men -- sa glo -- ria
  11. }
  12.  
  13. womenMelody = relative do' {
  14. time 2/4
  15. <sol' si>2 (<mi la>4) si'8rest
  16. }
  17.  
  18. womenWords = lyricmode {
  19. Ah __
  20. }
  21.  
  22. score {
  23. new ChoirStaff <<
  24.  
  25. % SOLISTS
  26.  
  27. new Staff = "soloists" with {
  28. instrumentName = #"Solisti"
  29. }
  30. <<
  31. new Voice = "soloists" {
  32. voiceOne
  33. soloistsMelody
  34. }
  35. >>
  36.  
  37. new Lyrics = "soloists"
  38.  
  39. context Lyrics = "soloists" {
  40. lyricsto "soloists" {
  41. soloistsWords
  42. }
  43. }
  44.  
  45. % CHOIR
  46.  
  47. new PianoStaff with { instrumentName = #"Coro" } <<
  48.  
  49. new Staff {
  50. new Voice = "women" {
  51. womenMelody
  52. }
  53. }
  54.  
  55. new Lyrics = "women"
  56.  
  57. context Lyrics = "women" {
  58. lyricsto "women" {
  59. womenWords
  60. }
  61. }
  62. >>
  63. >>
  64.  
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement