]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor fixes.
authorGraham Percival <graham@percival-music.ca>
Thu, 31 Mar 2005 03:42:06 +0000 (03:42 +0000)
committerGraham Percival <graham@percival-music.ca>
Thu, 31 Mar 2005 03:42:06 +0000 (03:42 +0000)
ChangeLog
Documentation/user/advanced-notation.itely
Documentation/user/programming-interface.itely

index 283ed8631bb95c57793267ea8088bcc3d260500b..e82ddd529feb02361091212c63c5559936dd5e42 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-03-30  Graham Percival  <gperlist@shaw.ca>
+
+       * Documentation/user/programming-interface.itely: minor fix.
+
+       * Documentation/user/advanced-notation.itely: added info to
+       Metronome markings.
+
 2005-03-30  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * scm/output-lib.scm (make-stencil-boxer): Junk code duplication,
index 3400c08b010e8293eb3a219f43a5daa07ac9108d..172fe997ddc1f343ed727f9e96a10825799d6bc7 100644 (file)
@@ -420,6 +420,26 @@ layout output, a metronome marking is printed
 \tempo 8.=120 c''1
 @end lilypond
 
+To change the tempo in the MIDI output without printing anything, make
+the metronome marking invisible
+@example
+\once \override Score.MetronomeMark #'transparent = ##t
+@end example
+
+To print other metronome markings, use these markup commands
+@lilypond[quote,raggedright,verbatim,relative,fragment]
+c4^\markup {
+  "("
+  \smaller \general-align #Y #DOWN \note #"16." #1
+  "="
+  \smaller \general-align #Y #DOWN \note #"8" #1"
+  ")" }
+@end lilypond
+
+@noindent
+See @ref{Text markup} for more details.
+
+
 @seealso
 
 Program reference: @internalsref{MetronomeChangeEvent}.
index 3446c21b28bbfd337c1223533b8946b6d0d9cf52..e4b143ce5d5fd70bf8943b0ae8748d829b17d846 100644 (file)
@@ -83,7 +83,7 @@ of defining @code{\twice}, the example above could also have been
 written as
 @example
 @dots{}
-@{ #(ly:export (make-sequential-music newLa)) @}
+@{ #(ly:export (make-sequential-music (list newLa))) @}
 @end example
 
 @refbugs