X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Ftopdocs%2FNEWS.tely;h=0b4bbd484612d463e52b82e1f4572548553a5d27;hb=cfc4cbf34569db6a6c8968694f86e36b206a9d05;hp=ae899645c2eb573b65b4161cd7a31cde2ef99e50;hpb=df76c6d3071a89225cd61e1f8ef5149c7b0550b4;p=lilypond.git diff --git a/Documentation/topdocs/NEWS.tely b/Documentation/topdocs/NEWS.tely index ae899645c2..0b4bbd4846 100644 --- a/Documentation/topdocs/NEWS.tely +++ b/Documentation/topdocs/NEWS.tely @@ -62,6 +62,30 @@ which scares away people. @end ignore +@item Dashed and dotted slurs, phrasing slurs, and ties +have been made variable thickness, and +partially dashed slurs are now available: +@lilypond[quote] +\relative c'' { + \slurDashed + c4( d e f) | + \slurDotted + g4( f e d) | + \slurHalfDashed + c4( d e f) +} +@end lilypond + + +@item An eyeglasses markup was added, incidating strongly to look at the +conductor for instructions: +@lilypond[quote] +\relative c'' { + \mark \markup {\eyeglasses} + c4_\markup{\eyeglasses} +} +@end lilypond + @item A snap-pizzicato (also known as Bartok-pizzicato) articulation was added: @lilypond[quote] @@ -70,6 +94,30 @@ A snap-pizzicato (also known as Bartok-pizzicato) articulation was added: } @end lilypond +@item +Tuplet number formatting functions are now available to print other fractions and to add notes to the number or fraction: +@lilypond[quote] +\relative c'' { + \once \override TupletNumber #'text = #(tuplet-number::non-default-tuplet-denominator-text 7) + \times 2/3 { c4. c4. c4. c4. } % begin verbatim + + \once \override TupletNumber #'text = #(tuplet-number::non-default-tuplet-fraction-text 12 7) + \times 2/3 { c4. c4. c4. c4. } + \once \override TupletNumber #'text = #(tuplet-number::append-note-wrapper (tuplet-number::non-default-tuplet-fraction-text 12 7) "8") + \times 2/3 { c4. c4. c4. c4. } + + \once \override TupletNumber #'text = #(tuplet-number::append-note-wrapper tuplet-number::calc-denominator-text "4") + \times 2/3 { c8 c8 c8 c8 c8 c8 } + \once \override TupletNumber #'text = #(tuplet-number::append-note-wrapper tuplet-number::calc-fraction-text "4") + \times 2/3 { c8 c8 c8 c8 c8 c8 } + + \once \override TupletNumber #'text = #(tuplet-number::fraction-with-notes "4." "8") + \times 2/3 { c4. c4. c4. c4. } + \once \override TupletNumber #'text = #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4") + \times 2/3 { c4. c4. c4. c4. } +} +@end lilypond + @item FretBoards now have a chordChanges property to keep repeated FretBoard objects from being typeset.