We Recommend

Beginning Ruby: From Novice to Professional Beginning Ruby: From Novice to Professional
Beginning Ruby is a thoroughly contemporary guide for every type of reader wanting to learn Ruby, from novice programmers to web developers to Ruby newcomers. It starts by explaining the principles behind object-oriented programming and within a few chapters builds toward creating a genuine Ruby application.


Posted By

sudarkoff on 07/25/06


Tagged

template blank music lilypond


Versions (?)


Blank staff paper with LilyPond


Published in: Other 


URL: http://jeffcovey.net/music/scores/blank/

It's just a blank page of musical staves.

  1. \version "2.9.13"
  2. \header {
  3. tagline = "http://george.sudarkoff.com/music"
  4. }
  5. \paper {
  6. #(set-paper-size "letter")
  7. top-margin = 0.7\cm
  8. }
  9. emptymusic = {
  10. \repeat unfold 10 % Change this for more lines.
  11. { s1\break }
  12. }
  13. \layout {
  14. indent = 0.0\cm
  15. pagenumber = no
  16. }
  17. \new Score \with {
  18. \override TimeSignature #'transparent = ##t
  19. \override Clef #'transparent = ##t
  20. defaultBarType = #""
  21. \remove Bar_number_engraver
  22. \remove Clef_engraver
  23. } <<
  24. \context Staff \emptymusic
  25. >>

Report this snippet 

You need to login to post a comment.