]> git.donarmstrong.com Git - lilypond.git/commitdiff
Move gonville.ly to Documentation/included
authorCarl Sorensen <c_sorensen@byu.edu>
Sat, 6 Mar 2010 20:26:35 +0000 (13:26 -0700)
committerCarl Sorensen <c_sorensen@byu.edu>
Sat, 6 Mar 2010 20:26:35 +0000 (13:26 -0700)
Documentation/included/gonville.ly [new file with mode: 0644]
input/gonville.ly [deleted file]

diff --git a/Documentation/included/gonville.ly b/Documentation/included/gonville.ly
new file mode 100644 (file)
index 0000000..1ee8e4a
--- /dev/null
@@ -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 (file)
index 1ee8e4a..0000000
+++ /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 
-}