]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/topdocs/NEWS.tely (Top): remove TODOs.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 20 Oct 2006 20:57:11 +0000 (20:57 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 20 Oct 2006 20:57:11 +0000 (20:57 +0000)
* Documentation/user/instrument-notation.itely (Entering lyrics):
add note about lyric ties and required font.

ChangeLog
Documentation/topdocs/NEWS.tely
Documentation/user/instrument-notation.itely

index 4a7bcc87a68a077139c24731bf355e23cb7b4e03..feed6f722033aff75cb04086161a92dce5e026aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-10-20  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
+       * Documentation/topdocs/NEWS.tely (Top): remove TODOs.
+
        * Documentation/user/global.itely (File structure): remove
        \addqoute remark.
 
index cb70ab415948a572fb795e35913560d91411befd..d0c85fcb209839ce73091072193ea6a71297dd27 100644 (file)
@@ -66,6 +66,10 @@ which scares away people.
 
 @end ignore
 
+
+
+@c Insert any new material above this line.  -gp
+
 @item Guitar right hand fingerings may
 now also be added,
 
@@ -87,22 +91,6 @@ now also be added,
 
 This feature was sponsored by William Wilson.
 
-@ignore
-hint for Graham:
-
-- grob StringFinger
-
-- event StringFingerEvent,
-
-- texts can be tuned with StringFinger #'digit-names property.
-
-- recommend use of identifiers in practice, eg. rhf = rightHandFinger
-
-Added section on Instrument specific notation.
-
-
-@end ignore 
-
 @item By defining a clip region, a cutout EPS file of a number of measures
 may be generated from the complete score.  Hence, it is no longer
 necessary to create separate files to create extracts of (long)
@@ -130,9 +118,6 @@ symbol,
   c1 c2 c4 c8[ c16 c]
 @end lilypond
 
-
-@c Please insert any new material above this line.  -gp
-
 @item Chords can now be partially tied,
 
 @lilypond[ragged-right,relative,fragment]
index 98cfedf2c74e80638fdbdddfdaf76a6b582d0126..fcdd263ac7e89aba32f827e1519bbb710490aa92 100644 (file)
@@ -801,7 +801,7 @@ between syllables, or use tilde  symbol (@code{~}) to get a lyric tie.
 \relative { c2 e4 g2 e4 }
 \addlyrics { gran- de_a- mi- go }
 \addlyrics { pu- "ro y ho-" nes- to }
-\addlyrics { pu- ro~y~ho- nes- to }
+\addlyrics { pu- ro~yho- nes- to }
 @end lilypond
 
 The lyric ties is implemented with the Unicode character U+203F, so be
@@ -2150,7 +2150,7 @@ Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
 Right hand fingerings in chords can be entered using
 @code{@var{note}-\rightHandFinger @var{finger}}
 
-@lilypond[verbatim,fragment]
+@lilypond[verbatim,fragment,relative=2]
   <c-\rightHandFinger #1 e-\rightHandFinger #2 >
 @end lilypond
 
@@ -2172,10 +2172,10 @@ setting @code{strokeFingerOrientations},
 @lilypond[quote,verbatim,ragged-right,fragment,relative=1]
 #(define RH rightHandFinger)
 {
-  \set strokeFingerOrientations = #'(left down)
-  <c-\RH #1 es-\RH #2 g-\RH #4 bes-\RH #5 > 4
+  \set strokeFingerOrientations = #'(up down)
+  <c-\RH #1 es-\RH #2 g-\RH #4 > 4
   \set strokeFingerOrientations = #'(up right down)
-  <c-\RH #1 es-\RH #2 g-\RH #4 bes-\RH #5 > 4
+  <c-\RH #1 es-\RH #2 g-\RH #4 > 4
 }
 @end lilypond