@Book {read-notation,
- note = {(Out of print) This is as close to the ``standard'' reference
-work for music notation issues as one is likely to get. MB},
+
+ note = {This is as close to the ``standard''
+ reference work for music notation issues as one is likely to get.
+ [Available at amazon]},
+
title = {Music Notation: a Manual of Modern Practice},
author = {Gardner Read},
totalentry = {(2nd edition)},
@Book {wanske,
- note = {I. A very thorough overview of engraving practices of various craftsmen. It includes detailed specs of characters, dimensions etc. II. a thorough overview of a anonymous (by now antiquated) automated system. EDV Means e(lektronischen) D(aten)v(erarbeitung), electronic data processing HWN},
+
+note = {I. A very thorough overview of engraving practices of various
+craftsmen. It includes detailed specs of characters, dimensions
+etc. II. a thorough overview of a anonymous (by now antiquated)
+automated system. EDV Means e(lektronischen) D(aten)v(erarbeitung),
+electronic data processing HWN. Available at amazon.de},
+
year = {1988},
title = {Musiknotation --- Von der Syntax des Notenstichs zum EDV-gesteuerten Notensatz},
author = {Helene Wanske},
--- /dev/null
+\header{
+filename = "angles.ly";
+title = "Angels We Have Heard on High";
+description = "Christmas Carol.";
+
+composer = "French Carol, 1854";
+enteredby = "Jeffrey B. Reed";
+copyright = "public domain";
+}
+
+global = \notes {
+ \time 2/2;
+ \keysignature bes;
+ \tempo 2=60;
+}
+\version "1.1.52";
+% \include "score-paper.ly"
+
+flute1 = \notes \relative c'' {
+ \clef violin;
+ \property Staff.instrument = "flute"
+
+ a'4 a a c |
+ c4. bes8 a2 |
+ a4 g a c |
+
+ a4. g8 f2 |
+ a4 a a c |
+ c4. bes8 a2 |
+
+ a4 g a c |
+ a4. g8 f2 |
+ c'2( [ d8 c8 bes8 a8 ] |
+
+ bes2 [ c8 bes8 a8 g8 ] |
+ a2 [ bes8 a8 g8 f8 ] |
+ )g4. c,8 c2 |
+
+ f4 g a bes |
+ a2 g2 |
+ c2( [ d8 c8 bes8 a8 ] |
+
+ bes2 [ c8 bes8 a8 g8 ] |
+ a2 [ bes8 a8 g8 f8 ] |
+ )g4. c,8 c2 |
+
+ f4 g a bes |
+ a2( )g2 |
+ f1 \bar "|.";
+}
+
+flute2 = \notes \relative c'' {
+ \clef violin;
+ \property Staff.instrument = "oboe"
+
+ f4 f e e |
+ g4 e f2 |
+ f4 e f f |
+
+ f4 e f2 |
+ f4 f e e |
+ f4 g f2 |
+
+ f4 e f f |
+ f4 e f2 |
+ f4 ( [a8 g8 ] f2( |
+
+ )f4 [g8 f8] e2( |
+ )e4 [f8 e8] d2 |
+ )c4.c8 c2 |
+
+ c4 e f f |
+ f2 e2 |
+ f4 ( [a8 g8 ] f2( |
+
+ )f4 [g8 f8] e2( |
+ )e4 [f8 e8] d2 |
+ )c4.c8 c2 |
+
+ c4 e f f |
+ f2( )e2 |
+ c1 \bar "|.";
+}
+
+$flute1_staff = \context Staff = flute1_group <
+ \global
+ \flute1
+>
+
+$flute2_staff = \context Staff = flute2_group <
+ \global
+ \flute2
+>
+
+$flutes = \context StaffGroup <
+ \$flute1_staff
+ \$flute2_staff
+>
+
+
+\score{
+ <
+ \$flutes
+ >
+ \paper{}
+ \midi{
+ \tempo 2 = 60 ;
+ }
+}
--- /dev/null
+diff -urN ../guile-core/libguile/Makefile.am ./libguile/Makefile.am
+--- ../guile-core/libguile/Makefile.am Sat Oct 10 13:00:59 1998
++++ ./libguile/Makefile.am Wed Oct 21 10:58:56 1998
+@@ -10,7 +10,7 @@
+ ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(PROC\|PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/'
+
+ lib_LTLIBRARIES = libguile.la
+-bin_PROGRAMS = guile
++bin_PROGRAMS = guile.exe
+
+ guile_SOURCES = guile.c
+ guile_LDADD = libguile.la ${THREAD_LIBS_LOCAL}
+diff -urN ../guile-core/libguile/Makefile.in ./libguile/Makefile.in
+--- ../guile-core/libguile/Makefile.in Sat Oct 10 13:00:59 1998
++++ ./libguile/Makefile.in Wed Oct 21 10:59:02 1998
+@@ -94,7 +94,7 @@
+ ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(PROC\|PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/'
+
+ lib_LTLIBRARIES = libguile.la
+-bin_PROGRAMS = guile
++bin_PROGRAMS = guile.exe
+
+ guile_SOURCES = guile.c
+ guile_LDADD = libguile.la ${THREAD_LIBS_LOCAL}
+diff -urN ../guile-core/libguile/dynl-dl.c ./libguile/dynl-dl.c
+--- ../guile-core/libguile/dynl-dl.c Mon Mar 30 23:03:30 1998
++++ ./libguile/dynl-dl.c Wed Oct 21 09:41:55 1998
+@@ -45,8 +45,6 @@
+ Author: Aubrey Jaffer
+ Modified for libguile by Marius Vollmer */
+
+-#include <dlfcn.h>
+-
+ #ifdef RTLD_LAZY /* Solaris 2. */
+ # define DLOPEN_MODE RTLD_LAZY
+ #else
+diff -urN ../guile-core/libguile/filesys.c ./libguile/filesys.c
+--- ../guile-core/libguile/filesys.c Fri Oct 09 20:51:15 1998
++++ ./libguile/filesys.c Wed Oct 21 10:18:12 1998
+@@ -138,15 +138,19 @@
+ if (fdes == -1)
+ scm_syserror (s_chown);
+ }
++#if 0
+ SCM_SYSCALL (rv = fchown (fdes, SCM_INUM (owner), SCM_INUM (group)));
++#endif
+ }
+ else
+ {
+ SCM_ASSERT (SCM_NIMP (object) && SCM_ROSTRINGP (object),
+ object, SCM_ARG1, s_chown);
+ SCM_COERCE_SUBSTR (object);
++#if 0
+ SCM_SYSCALL (rv = chown (SCM_ROCHARS (object),
+ SCM_INUM (owner), SCM_INUM (group)));
++#endif
+ }
+ if (rv == -1)
+ scm_syserror (s_chown);
+@@ -557,14 +561,18 @@
+ if (fdes == -1)
+ scm_syserror (s_truncate_file);
+ }
++#if 0
+ SCM_SYSCALL (rv = ftruncate (fdes, csize));
++#endif
+ }
+ else
+ {
+ SCM_ASSERT (SCM_NIMP (object) && SCM_ROSTRINGP (object),
+ object, SCM_ARG1, s_chown);
+ SCM_COERCE_SUBSTR (object);
++#if 0
+ SCM_SYSCALL (rv = truncate (SCM_ROCHARS (object), csize));
++#endif
+ }
+ if (rv == -1)
+ scm_syserror (s_truncate_file);
dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4
dnl WARNING WARNING WARNING WARNING
dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4
+dnl WARNING WARNING WARNING WARNING
+dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4
dnl aclocal.m4 -*-shell-script-*-
dnl StepMake subroutines for configure.in
dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4
dnl WARNING WARNING WARNING WARNING
dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4
+dnl WARNING WARNING WARNING WARNING
+dnl do not edit! this is aclocal.m4, generated from stepmake/aclocal.m4
dnl aclocal.m4 -*-shell-script-*-
dnl StepMake subroutines for configure.in