]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/user/examples.itely: removed \midi block to
authorJürgen Reuter <j@web.de>
Sun, 26 Sep 2004 22:27:11 +0000 (22:27 +0000)
committerJürgen Reuter <j@web.de>
Sun, 26 Sep 2004 22:27:11 +0000 (22:27 +0000)
simplify the example

* Documentation/user/notation.itely: Removed superfluous
TextSpanner tweakings (is already done by engraver-init.ly).
Documented bug: vertical alignment of articulations.

* Documentation/user/notation.itely, ly/engraver-init.ly
(VaticanaVoice, GregorianTranscriptionVoice): Bugfix: TextSpanner
padding.

* Documentation/user/notation.itely, ly/engraver-init.ly: moved
docu about TextSpanner padding bug from manual to engraver.ly
(since it's workarounded and hence not user-visible any more)

ChangeLog
Documentation/user/examples.itely
Documentation/user/notation.itely
ly/engraver-init.ly

index 48cdebe17558262e9f12b9710a392601d1c0adb8..19991d9f3321b4c85e9aecfa7fdf7d5239e7e569 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2004-09-26  Juergen Reuter  <reuter@ipd.uka.de>
+
+       * Documentation/user/examples.itely: removed \midi block to
+       simplify the example
+
+       * Documentation/user/notation.itely: Removed superfluous
+       TextSpanner tweakings (is already done by engraver-init.ly).
+       Documented bug: vertical alignment of articulations.
+
+       * Documentation/user/notation.itely, ly/engraver-init.ly
+       (VaticanaVoice, GregorianTranscriptionVoice): Bugfix: TextSpanner
+       padding.
+
+       * Documentation/user/notation.itely, ly/engraver-init.ly: moved
+       docu about TextSpanner padding bug from manual to engraver.ly
+       (since it's workarounded and hence not user-visible any more)
+
 2004-09-26  Graham Percival  <gperlist@shaw.ca>
 
        * ly/property-init.ly: fix bug in displaying ledger lines while
index 229995dfb3ebe3614b2d3fe31f77397e0edd169f..6cb601cfa57c83590f8a89a7c43acf3848e51dbf 100644 (file)
@@ -687,9 +687,6 @@ bassusLyrics = \lyricmode {
            \override Slur #'transparent = ##t
        }
     }
-    \midi {
-       \tempo 4 = 96
-    }
 }
 
 @end lilypond
index 81df7747d59fe5e51280b935c58f9a6013d6792b..6a8d90c4cd21923b96e6783c4aeac329e695b565 100644 (file)
@@ -6139,27 +6139,14 @@ Editio Vaticana style.
     a4\accentus_"accentus" s1
     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
   }
-  \paper {
-    \context {
-       \VaticanaVoice
-       % Prepare TextSpanner for \episem{Initium|Finis} use.
-       \override TextSpanner #'style = #'line
-       \override TextSpanner #'edge-height = #'(0 . 0)
-       \override TextSpanner #'padding = #0.5
-       \override TextSpanner #'enclose-bounds = #1
-       \override TextSpanner #'edge-text = #'("" . "")
-    }
-  }
 }
 @end lilypond
 
 @refbugs
 
-The line @code{\override Script #'padding = #-0.1} is required to
-force the articulation signs being placed vertically tightly to the
+Some articulations are vertically placed too closely to the
 correpsonding note heads.
 
-
 @node Custodes
 @subsection Custodes
 
index 0f288016fc20eb92ff834d4213069f385024d7f0..ee8d7dc0b99bdebd70639380c14d9ded1aa5f60f 100644 (file)
@@ -679,10 +679,14 @@ EasyNotation = \context { % TODO: why \context override?
   % N.B.: dash-fraction MUST be unset; otherwise, TextSpanner will
   % always produce dashed lines, regardless of the style property.
   %
+  % FIXME: The line @code{\override TextSpanner #'padding = #-0.1} is
+  % required to force the articulation signs being placed vertically
+  % tightly to the correpsonding note heads.
+  %
   \override TextSpanner #'dash-fraction = #'()
   \override TextSpanner #'style = #'line
   \override TextSpanner #'edge-height = #'(0 . 0)
-  \override TextSpanner #'padding = #0.5
+  \override TextSpanner #'padding = #-0.1
   \override TextSpanner #'enclose-bounds = #1
   \override TextSpanner #'edge-text = #'("" . "")
 }
@@ -749,10 +753,14 @@ EasyNotation = \context { % TODO: why \context override?
   % N.B.: dash-fraction MUST be unset; otherwise, TextSpanner will
   % always produce dashed lines, regardless of the style property.
   %
+  % FIXME: The line @code{\override TextSpanner #'padding = #-0.1} is
+  % required to force the articulation signs being placed vertically
+  % tightly to the correpsonding note heads.
+  %
   \override TextSpanner #'dash-fraction = #'()
   \override TextSpanner #'style = #'line
   \override TextSpanner #'edge-height = #'(0 . 0)
-  \override TextSpanner #'padding = #0.5
+  \override TextSpanner #'padding = #-0.1
   \override TextSpanner #'enclose-bounds = #1
   \override TextSpanner #'edge-text = #'("" . "")
 }