From: Carl Sorensen Date: Sat, 6 Mar 2010 20:26:35 +0000 (-0700) Subject: Move gonville.ly to Documentation/included X-Git-Tag: release/2.13.16-1~51 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ad50c1940147343e6241e8d6a0510caa475a8703;p=lilypond.git Move gonville.ly to Documentation/included --- diff --git a/Documentation/included/gonville.ly b/Documentation/included/gonville.ly new file mode 100644 index 0000000000..1ee8e4a649 --- /dev/null +++ b/Documentation/included/gonville.ly @@ -0,0 +1,62 @@ +\header { + + texidoc = "Use an alternative music font (gonville). To use this, +put gonville-20.otf and gonville-brace.otf in a directory where +lilypond can find them (use the --include option to extend the search +path)." + +} + +\version "2.13.6" + +\paper { + myStaffSize = 20 + + %% bogus statement, because myStaffSize must be assigned before + %% the scheme statement starts parsing. + bogus = 42 + + #(add-music-fonts fonts "gonville" 'gonville '(20) + (/ myStaffSize 20)) +} + +sampleMusic = \relative c'' { + a4-\trill_\f b8 c16 d32 +} + + +{ + \set Staff.instrumentName = #"Default" + \sampleMusic +} + +\score { + { + \set Staff.instrumentName = #"Feta" + \sampleMusic + } + \layout { + #(define font-defaults + '((font-family . feta) (font-encoding . fetaMusic))) + } +} + +\score { + \relative c'' { + \set Staff.instrumentName = #"Gonv" + \sampleMusic + } + \layout { + #(define font-defaults + '((font-family . gonville) (font-encoding . fetaMusic))) + } +} + +\relative c'' +{ + \set Staff.instrumentName = #"Gonv override" + c2^\trill c + \override NoteHead #'font-family = #'gonville + \override Script #'font-family = #'gonville + c^\trill c +} diff --git a/input/gonville.ly b/input/gonville.ly deleted file mode 100644 index 1ee8e4a649..0000000000 --- a/input/gonville.ly +++ /dev/null @@ -1,62 +0,0 @@ -\header { - - texidoc = "Use an alternative music font (gonville). To use this, -put gonville-20.otf and gonville-brace.otf in a directory where -lilypond can find them (use the --include option to extend the search -path)." - -} - -\version "2.13.6" - -\paper { - myStaffSize = 20 - - %% bogus statement, because myStaffSize must be assigned before - %% the scheme statement starts parsing. - bogus = 42 - - #(add-music-fonts fonts "gonville" 'gonville '(20) - (/ myStaffSize 20)) -} - -sampleMusic = \relative c'' { - a4-\trill_\f b8 c16 d32 -} - - -{ - \set Staff.instrumentName = #"Default" - \sampleMusic -} - -\score { - { - \set Staff.instrumentName = #"Feta" - \sampleMusic - } - \layout { - #(define font-defaults - '((font-family . feta) (font-encoding . fetaMusic))) - } -} - -\score { - \relative c'' { - \set Staff.instrumentName = #"Gonv" - \sampleMusic - } - \layout { - #(define font-defaults - '((font-family . gonville) (font-encoding . fetaMusic))) - } -} - -\relative c'' -{ - \set Staff.instrumentName = #"Gonv override" - c2^\trill c - \override NoteHead #'font-family = #'gonville - \override Script #'font-family = #'gonville - c^\trill c -}