From: fred Date: Tue, 26 Mar 2002 23:10:22 +0000 (+0000) Subject: lilypond-1.3.41 X-Git-Tag: release/1.5.59~1710 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3fdcf0f7da41432bf7c0436a2e74624f5b34839c;p=lilypond.git lilypond-1.3.41 --- diff --git a/Documentation/user/mudela-book.tely b/Documentation/user/mudela-book.tely index 37299dc14e..8b8509d582 100644 --- a/Documentation/user/mudela-book.tely +++ b/Documentation/user/mudela-book.tely @@ -191,7 +191,7 @@ be no empty lines between the normal text and the mudela environment. You can also use @code{mudelafile} (on a separate line, FIXME), to -include another file. Files with name ending with @code{.sly} +include another file. @section Fontsize options You can use all lilypond fontsizes in mudela-book. The default 16pt fontsize is probably to big to be diff --git a/Documentation/user/properties.itely b/Documentation/user/properties.itely index 36dbac92da..3804e11ab8 100644 --- a/Documentation/user/properties.itely +++ b/Documentation/user/properties.itely @@ -166,7 +166,7 @@ c''16 \property Staff.fontSize = -2 c''16 Merge noteheads in collisions, even if they have a different number of dots. This normal notation for polyphonic guitar music. -@mudelafile[verbatim]{force-hshift.sly} +@mudelafile[verbatim]{force-hshift.ly} [FIXME: this should be moved] diff --git a/input/test/chord-tremolo.ly b/input/test/chord-tremolo.ly new file mode 100644 index 0000000000..66d118991b --- /dev/null +++ b/input/test/chord-tremolo.ly @@ -0,0 +1,10 @@ +\score { + \context Voice \notes\relative c { + \repeat "tremolo" 8 { c16 d16 } + \repeat "tremolo" 4 { c16 d16 } + } + \paper { + linewidth=-1.0; + } + \midi { } +} diff --git a/input/test/coda-kludge.ly b/input/test/coda-kludge.ly index 80920b1240..ea590a55eb 100644 --- a/input/test/coda-kludge.ly +++ b/input/test/coda-kludge.ly @@ -32,7 +32,7 @@ Hi, c c c c % coda-klugde: let volta span only one bar \property Staff.voltaSpannerDuration = #(make-moment 1 1) - \repeat semi 5 { d d d d } + \repeat "volta" 5 { d d d d } \alternative { { e e e e f f f f } { g g g g } } } diff --git a/input/test/repeat.ly b/input/test/repeat.ly index 2c1d01c951..489fc8e238 100644 --- a/input/test/repeat.ly +++ b/input/test/repeat.ly @@ -2,7 +2,7 @@ < \context Staff \notes\relative c'{ c d e f - \repeat semi 2 { g a b c } + \repeat "volta" 2 { g a b c } \alternative { { c b a g } { f e d c } } } \context Lyrics \lyrics { diff --git a/input/test/stem-direction-down.ly b/input/test/stem-direction-down.ly index 3834e272bd..fb331e9674 100644 --- a/input/test/stem-direction-down.ly +++ b/input/test/stem-direction-down.ly @@ -1,6 +1,6 @@ \score{ \notes\relative c{ - \include "stem-direction.sly"; + b''4 ~ b8()b8 e4 e, } \paper{ stem_default_neutral_direction=-1.0; diff --git a/input/test/stem-direction.ly b/input/test/stem-direction.ly new file mode 100644 index 0000000000..800185c33e --- /dev/null +++ b/input/test/stem-direction.ly @@ -0,0 +1,10 @@ +\score { + \context Voice \notes\relative c { + b''4 ~ b8()b8 e4 e, + + } + \paper { + linewidth=-1.0; + } + \midi { } +}