#(set! paper-alist (cons '("my size" . (cons (* 93.2 mm) (* 42 mm))) paper-alist)) %#(set-global-staff-size 18) \include "gregorian.ly" \paper { #(define fonts (make-pango-font-tree "Garamond Premr Pro" "Nimbus Sans" "Luxi Mono" (/ staff-height pt 20))) #(set-paper-size "my size") #(define top-margin (* 0 in)) #(define left-margin (* 0 in)) #(define right-margin (* 0 in)) #(define bottom-margin (* 0 in)) #(define print-page-number #f) } \header { tagline = ##f } chant = \relative g' { \set Score.timing = ##f g4 g4( c4) c4 c4( b4) a4 a4( b4) b4 \finalis g4( c4) c4( b4) a4 b4 \finalis } verba = \lyricmode { Go forth the Mass is end -- ed. Thanks be to God. } \score { \new Staff << \new Voice = "melody" \chant \new Lyrics = "one" \lyricsto melody \verba >> \layout { \context { \Staff \remove "Time_signature_engraver" %\remove "Bar_engraver" \hide Stem } \context { \Voice \override Stem.length = #0 } \context { \Score barAlways = ##t defaultBarType = "" } \context { \Lyrics \override LyricText.font-size = #1.0 } } } \version "2.19.64" % necessary for upgrading to future LilyPond versions.