]> git.donarmstrong.com Git - lilypond.git/commitdiff
More editing.
authorGraham Percival <graham@percival-music.ca>
Sun, 26 Sep 2004 19:48:15 +0000 (19:48 +0000)
committerGraham Percival <graham@percival-music.ca>
Sun, 26 Sep 2004 19:48:15 +0000 (19:48 +0000)
ChangeLog
Documentation/user/sound-output.itexi

index 783b4bd03586b4f58ee0930b03d42605e73ac790..a834d0a1ba338ae7f7678b139a2ba9796c981859 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,8 @@
 
        * input/template/piano-dynamics.ly: remove.
 
+       * Documentation/user/sound-output.itexi: more editing
+
 2004-09-25  Graham Percival  <gperlist@shaw.ca>
 
        * Documentation/user/notation.itely: more editing.
index bfd162f00d5b48bd91874765b10eea3ea40b3d72..e7d42202137fa4590e3d67f3220da77514161f87 100644 (file)
@@ -3,27 +3,31 @@
 @chapter Sound
 @cindex Sound
 
+@cindex MIDI
+
 MIDI (Musical Instrument Digital Interface) is a standard for
-connecting and controlling digital instruments.  A MIDI file is like a
-tape recording of a MIDI instrument.
+connecting and controlling digital instruments.  A MIDI file is a
+series of notes in a number of tracks.  It is not an actual
+sound file; you need special software to translate between the
+series of notes and actual sounds.
 
-Pieces of music can be converted to a MIDI file, so you can listen to
-what was entered.  This is convenient for checking the music.  Octaves
+Pieces of music can be converted to MIDI files, so you can listen to
+what was entered.  This is convenient for checking the music; octaves
 that are off or accidentals that were mistyped stand out very much
-when listening to the musical transcription.
+when listening to the MIDI output.
 
 @refbugs
 
-many musically interesting effects, such as swing, articulation,
+Many musically interesting effects, such as swing, articulation,
 slurring, etc., are not translated to midi.
 
-the midi output allocates a channel for each staff, and one for global
-settings.  hence, the midi file should not have more than 15 staves
-(or 14 if you do not use drums). other staves will remain silent.
+The midi output allocates a channel for each staff, and one for global
+settings.  Therefore the midi file should not have more than 15 staves
+(or 14 if you do not use drums).  Other staves will remain silent.
 
-not all midi players correctly handle tempo change in the midi
-output. players that are known to work include
-@uref{http://timidity.sourceforge.net/,timidity}
+Not all midi players correctly handle tempo change in the midi
+output.  Players that are known to work include
+@uref{http://timidity.sourceforge.net/,timidity}.
 
 
 
@@ -38,20 +42,17 @@ output. players that are known to work include
 @node Creating MIDI files
 @section Creating MIDI files 
 
-@cindex sound
-@cindex midi
-
 To create a MIDI from a music piece of music, add a @code{\midi} block
 to a score, for example,
 
 @example 
 \score @{
-    @var{...music...}
-    \midi @{ \tempo 4=72 @}
+  @var{...music...}
+  \midi @{ \tempo 4=72 @}
 @}
 @end example 
 
-Here, the tempo is specified using the @code{\tempo} command.  In this
+The tempo is specified using the @code{\tempo} command.  In this
 case the tempo of quarter notes is set to 72 beats per minute.
 
 
@@ -61,9 +62,9 @@ be added
 
 @example 
 \score @{
-    @var{...music...}
-    \midi @{ \tempo 4=72 @}
-    \paper @{ @}
+  @var{...music...}
+  \midi @{ \tempo 4=72 @}
+  \paper @{ @}
 @}
 @end example 
 @cindex paper block
@@ -122,8 +123,6 @@ The MIDI instrument name is set by the @code{Staff.midiInstrument}
 property.  The instrument name should be chosen from the list in
 @ref{MIDI instruments}.
 
-@refbugs
-
-If the selected string does not exactly match, the default is used,
-which is the Grand Piano.
+If the selected instrument does not exactly match an instrument from
+the list of MIDI instruments, the Grand Piano instrument is used.