]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Metronome marks): update doco.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 17 May 2003 13:29:12 +0000 (13:29 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 17 May 2003 13:29:12 +0000 (13:29 +0000)
ChangeLog
Documentation/user/refman.itely
input/test/metronome.ly [deleted file]

index 7d56f42436a72e253ab109a1df2794de618df384..51ccae48ecb5ddb3d3d795a7422d1bd43403f08a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-05-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * Documentation/user/refman.itely (Metronome marks): update doco.
+
        * input/regression/markup-note.ly: new file
 
        * input/regression/metronome-marking.ly: new file
index 861874b0a40a565dcab1b3785544db0d6311f19f..520a7cf3df94995f9fd3927b8d25a5ad490fc74a 100644 (file)
@@ -1625,26 +1625,21 @@ d4
 @cindex metronome marking
 
 Metronome settings can be entered as follows:
-
-@cindex @code{\tempo}
-@example
+@example 
   \tempo @var{duration} = @var{perminute} 
 @end example
 
-For example, @code{\tempo 4 = 76} requests output with 76 quarter notes
-per minute.
+In the MIDI output, they are interpreted as a tempo change, and in the
+paper output, a metronome marking is printed
+@cindex @code{\tempo}
+@lilypond[fragment,verbatim]
+  \tempo 8.=120 c''1
+@end lilypond
 
 @seealso
 
 @internalsref{TempoEvent}
   
-@refbugs
-  
-The tempo setting is not printed, but is only used in the MIDI
-output. You can trick lily into producing a metronome mark,
-though. Details are in @ref{Text markup}.
-
-[TODO: make note markup.]
 
 
 @node Text spanners
@@ -5285,26 +5280,7 @@ The markup mechanism is very flexible and extensible.  Refer to
 @file{scm/new-markup.scm} for more information on extending the markup
 mode.
 
-@cindex metronome mark
-
-One practical application of complicated markup is to fake a metronome
-marking:
-
-@lilypond[verbatim]
-eighthStem = \markup \combine
-       \musicglyph #"flags-stem"
-       \translate #'(0.0 . 3.5) \musicglyph #"flags-u3"
-eighthNote = \markup
-       \override #'(word-space . 0.0)
-       { \musicglyph #"noteheads-2"
-         \translate #'(-0.05 . 0.1) \eighthStem }
 
-\score {
-  \notes\relative c'' {
-    a1^\markup { \magnify #0.9 \eighthNote " = 64" }
-  }
-}
-@end lilypond
 
 @seealso
 
diff --git a/input/test/metronome.ly b/input/test/metronome.ly
deleted file mode 100644 (file)
index 395efeb..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-\version "1.7.16"
-
-
-
-% Test scm markup text and kerning
-
-% Warning
-%  
-% This is not a feature, it is a hack.  If you change anything,
-% it will probably break
-
-% FIXME: put in an item, and typeset by an engraver.
-
-eigthStem = \markup \combine
-       \musicglyph #"flags-stem"
-       \translate #'(0.0 . 3.5) \musicglyph #"flags-u3"
-eighthNote = \markup
-       \override #'(word-space . 0.0)
-       { \musicglyph #"noteheads-2"
-         \translate #'(-0.05 . 0.1) \eigthStem }
-
-\score {
-  \notes\relative c'' {
-    a1^\markup { \magnify #0.9 \eighthNote " = 64" }
-  }
-  \paper {
-    raggedright = ##t
-    \translator{
-      \ScoreContext
-      TextScript \override #'font-shape = #'upright
-    }
-  }
-}
-%% new-chords-done %%