]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/changes.tely
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / changes.tely
index 8ce75ea5dc4325a1549ce8bdf42501f70a5b9e08..da96f0b5a50f87aefe48910eadd3a7da297dbe61 100644 (file)
@@ -58,72 +58,133 @@ which scares away people.
 
 * Write complete sentences.
 
-* only show user-visible changes. 
+* only show user-visible changes.
 
 @end ignore
 
-@item Intermediate .ps files which are created by LilyPond
+@item
+A version of the breve notehead has been added with two vertical lines on each side.
+@lilypond
+\relative c'' {
+  \time 4/2
+  \override Staff.NoteHead  #'style = #'altdefault
+  c\breve b\breve
+}
+@end lilypond
+
+
+@item
+Instrument names and vocal names now take into account the extent of
+system start delimiters in other staves for their positioning,
+resulting in improved default alignment for left-, center- and
+right-aligned names.
+@lilypond[quote,indent=18\mm]
+<<
+  \new StaffGroup <<
+    \new GrandStaff <<
+      \new Staff {
+        \set Staff.instrumentName = #"Piccolo"
+        c''1
+      }
+      \new Staff {
+        \set Staff.instrumentName = #"Flute"
+        c''1
+      }
+    >>
+    \new Staff {
+      \set Staff.instrumentName = #"Bassoon"
+      \clef tenor
+      c'1
+    }
+  >>
+  \new PianoStaff <<
+    \set PianoStaff.instrumentName = #"Piano"
+    \context Staff = "up" {
+      c'1
+    }
+    \context Staff = "down" {
+      \clef bass
+      c1
+    }
+  >>
+>>
+@end lilypond
+
+@item
+Braces in markup can now be selected by point size using the markup commands
+@code{\left-brace} and @code{\right-brace}.
+@lilypond[quote]
+\markup {
+  \left-brace #35
+  \hspace #2
+  \right-brace #45
+}
+@end lilypond
+
+@item
+Intermediate .ps files which are created by LilyPond
 during compilation are now deleted by default.  To keep them,
-add the line
+add the following line to your input files:
 @example
 #(ly:set-option 'delete-intermediate-files #f)
 @end example
-to your input files.
 
-@item Dashed and dotted slurs, phrasing slurs, and ties
+@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)
-}
+@lilypond[quote,relative=2]
+\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 
+@item
+An eyeglasses markup was added, indicating strongly to look at the
 conductor for instructions:
-@lilypond[quote]
-\relative c'' {
-  \mark \markup {\eyeglasses}
-  c4_\markup{\eyeglasses}
-}
+@lilypond[quote,relative=2]
+\mark \markup { \eyeglasses }
+c4_\markup{ \eyeglasses }
 @end lilypond
 
 @item
 A snap-pizzicato (also known as Bartok-pizzicato) articulation was added:
-@lilypond[quote]
-\relative c'' {
-  c\snappizzicato
-}
+@lilypond[quote,relative=2]
+c4\snappizzicato
 @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. }
-}
+Tuplet number formatting functions are now available to print other fractions
+and to add notes to the number or fraction:
+@lilypond[quote,relative=2]
+\once \override TupletNumber #'text =
+  #(tuplet-number::non-default-tuplet-denominator-text 7)
+\times 2/3 { c4. c4. c4. c4. }
+
+\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