Advertisement
Guest User

Untitled

a guest
Sep 4th, 2010
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. #(define-markup-command (columns layout props args) (markup-list?)
  2. (let ((line-width (/ (chain-assoc-get 'line-width props
  3. (ly:output-def-lookup layout 'line-width))
  4. (max (length args) 1))))
  5. (interpret-markup layout props
  6. (make-line-markup (map (lambda (line)
  7. (markup #:pad-to-box `(0 . ,line-width) '(0 . 0)
  8. #:override `(line-width . ,line-width)
  9. line))
  10. args)))))
  11.  
  12. \markup \columns {
  13. \column {
  14. \line {
  15. "6. "
  16. \column {
  17. "Human reason, though it ponder,"
  18. "Cannot fathom this great wonder"
  19. "That Christ's body e'er remaineth"
  20. "Though it countless souls sustaineth,"
  21. "And that He His blood is giving"
  22. "With the wine we are receiving."
  23. "These great mysteries unsounded"
  24. "Are by God alone expounded."
  25. }
  26. }
  27. }
  28. \column {
  29. \line {
  30. "8. "
  31. \column {
  32. "Lord, by love and mercy driven"
  33. "Thou hast left Thy throne in heaven"
  34. "On the cross for us to languish"
  35. "And to die in bitter anguish,"
  36. "To forego all joy and gladness"
  37. "And to shed Thy blood in sadness."
  38. "By this blood, redeemed and living,"
  39. "Lord, I praise Thee with thanksgiving."
  40. }
  41. }
  42. }
  43. }
  44.  
  45. \markup \columns {
  46. \column {
  47. \line {
  48. "7. "
  49. \column {
  50. "Jesus, Sun of Life, my Splendor,"
  51. "Jesus, Thou my Friend most tender,"
  52. "Jesus, Joy of my desiring,"
  53. "Fount of life, my soul inspiring, --"
  54. "At Thy feet I cry, my Maker,"
  55. "Let me be a fit partaker"
  56. "Of this blessed food from heaven,"
  57. "For our good, Thy glory, given."
  58. }
  59. }
  60. }
  61. \column {
  62. \line {
  63. "9. "
  64. \column {
  65. "Jesus, Bread of Life, I pray Thee,"
  66. "Let me gladly here obey Thee."
  67. "By Thy love I am invited,"
  68. "Be Thy love with love requited;"
  69. "From this Supper let me measure,"
  70. "Lord, how vast and deep love's treasure."
  71. "Though the gifts Thou here dost give me"
  72. "As Thy guest in heaven receive me."
  73. }
  74. }
  75. }
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement