template.ly (355B)
1 \version "2.20" 2 \language "english" 3 4 \paper { 5 print-all-headers = ##t 6 tagline = ##f 7 } 8 9 NUMBER = \relative c' { 10 \tempo "Allegro" 11 \key c \major 12 \time 4/4 13 \clef "bass" 14 15 % bar 1 16 } 17 18 \score { 19 \new Staff \NUMBER 20 \header { 21 title = "NUMBER" 22 } 23 \layout { 24 } 25 \midi { 26 } 27 } 28 29 % Local Variables: 30 % compile-command: "make -B NUMBER.pdf" 31 % End: