]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fixed misc broken links.
authorGraham Percival <graham@percival-music.ca>
Thu, 23 Dec 2004 06:41:32 +0000 (06:41 +0000)
committerGraham Percival <graham@percival-music.ca>
Thu, 23 Dec 2004 06:41:32 +0000 (06:41 +0000)
ChangeLog
Documentation/user/changing-defaults.itely
Documentation/user/programming-interface.itely
input/test/unfold-all-repeats.ly [new file with mode: 0644]

index 49c14c236e54967e40e4630076389f5298691e4d..f28b1b931fc1a287d1856aba84824d8bf391f681 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,9 @@
 
        * input/test/unfold-all-repeats.ly: added file back.
 
-       * Documentation/user/notation.itely: fixed misc broken
+       * Documentation/user/notation.itely,
+       Documentation/user/programming-interface.itely
+       Documentation/user/changing-defaults.itely: fixed misc broken
        links to input/test/ files.
 
 2004-12-22  Jan Nieuwenhuizen  <janneke@gnu.org>
index 2112b29dbf99adeac039234f0691643ee9e14c19..29ac67b232b02079813d8dd765fb04f06af3264c 100644 (file)
@@ -1936,10 +1936,6 @@ how much space can be spent on a page, the latter creates the actual
 page given the system to put on it.
 
 
-@seealso
-
-Examples: @inputfileref{input/@/test,page@/-breaks@/.ly}
-
 @refbugs
 
 The option rightmargin is defined but doesn't set the right margin
index 2e9c0e1591d26946a1d276c59349c2dc81f3e457..3446c21b28bbfd337c1223533b8946b6d0d9cf52 100644 (file)
@@ -298,7 +298,7 @@ Other applications of @code{\applymusic} are writing out repeats
 automatically (@inputfileref{input/@/test,unfold@/-all@/-repeats@/.ly}),
 saving keystrokes (@inputfileref{input/@/test,music@/-box@/.ly}) and
 exporting LilyPond input to other formats
-(@inputfileref{input/@/test,to@/-xml@/.ly})
+(@inputfileref{input/@/no@/-notation,to@/-xml@/.ly}).
 
 @cindex internal storage
 @cindex @code{\displayMusic}
diff --git a/input/test/unfold-all-repeats.ly b/input/test/unfold-all-repeats.ly
new file mode 100644 (file)
index 0000000..32c1226
--- /dev/null
@@ -0,0 +1,27 @@
+\version "2.4.0"
+
+\header { 
+texidoc = "Applying the standard function @code{unfold-repeats} unfolds 
+recursively all repeats for a correct MIDI output."
+}
+
+mel =  \context Staff {
+  \repeat tremolo 8 {c'32 e' }
+  \repeat percent 2 { c''8 d'' }
+  \repeat volta 2 {c'4 d' e' f'} 
+  \alternative {
+    { g' a' a' g' }
+    {f' e' d' c' }
+  }
+  \bar "|."
+}
+
+\score {  {
+  \mel \break
+  \applymusic #unfold-repeats \mel 
+ }
+}
+
+
+
+