Copy/clone this repository with: git clone git://turkos.aspodata.se/musik.git /// Introdutions to my code with WAMozart/requiem as an example. The source code is awailable at [1] and the result is at [2]. [1] http://aspodata.se/git/musik/WAMozart/requiem/ [2] http://aspodata.se/choir/osthammar/mozart/ /// The top file of the first movement in Mozarts requiem is I.ly and to get the sheet music just do "lilypond I.ly" though you might want to decomment the \header block. --- I.ly \version "2.19.0" %{ \header { title = "Introitus" subtitle = "Requiem" composer = "W.A. Mozart" } %} \include "score_glb.ily" \include "I.ily" PB = { s1*20 \break s1*5 \break s1*8 \break } \include "score_ps.ily" \include "score_midi.ily" --- I have commented away the \header part, since I don't need it in the booklet, but if you do single sheet versions, it will come in handy. The file "score_glb.ily", which I include, contains my preferences and some shorthands (like "solo = \markup { \italic solo }"). I.ily contains the tempo, markups, lyrics and the music. PB is a conveniant way of telling the lilypond where to break lines.