]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add News item for Rune's new automatic accidentals rules
authorJohn Mandereau <john.mandereau@gmail.com>
Tue, 9 Sep 2008 11:04:13 +0000 (13:04 +0200)
committerJohn Mandereau <john.mandereau@gmail.com>
Tue, 9 Sep 2008 11:04:13 +0000 (13:04 +0200)
Documentation/topdocs/NEWS.tely

index a676c2d699f29214288f6f338d9158a449d8852c..3b4ab8ea8e40a6a99d0bf5d05cd5fc2f33ae5c68 100644 (file)
@@ -65,6 +65,30 @@ which scares away people.
 
 @end ignore
 
+@item Three automatic accidentals rules have been added: @code{neo-modern},
+@code{neo-modern-cautionary} and @code{dodecaphonic}.  The following
+example illustrates @code{neo-modern} rule.
+@lilypond[]
+notes = {
+  <<
+    \relative c' {
+      cis'8 fis, d'4 <a cis>8 f bis4 |
+      cis2. <c, fis>4 |
+    }
+    \\
+    \relative c' {
+      ais'2 cis, |
+      fis8 b a4 cis2 |
+    }
+  >>
+}
+
+\new Staff {
+  #(set-accidental-style 'neo-modern)
+  \notes
+}
+@end lilypond
+
 @item Flags can now be generated with Scheme-code using the @code{'flag} Stem
 grob property. Existing scores will work without change.
 @lilypond