]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorhanwen <hanwen>
Sun, 14 Sep 2003 00:21:49 +0000 (00:21 +0000)
committerhanwen <hanwen>
Sun, 14 Sep 2003 00:21:49 +0000 (00:21 +0000)
ChangeLog
Documentation/user/converters.itely
Documentation/user/introduction.itely
Documentation/user/lilypond.tely
Documentation/user/refman.itely

index 08a20f6b4f6460311c769cb59df64f48e0718750..f391a9416fa4780e55c4dca19b654334b956da25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-09-14  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * Documentation/user/*.itely: manual tweaks
+
 2003-09-13  Juergen Reuter  <reuter@ipd.uka.de>
 
        * mf/parmesan-clefs.mf: still more set_char_box() fixes and code
index bb80263c434706895443918e9ae9958a0f22add4..f61fac2a795844f1e869c78b1fcc6b622ea2b3eb 100644 (file)
@@ -333,7 +333,7 @@ print warranty and copyright.
 
 @refbugs
 
-Currently, only plain notes (pitches, durations), voices, and staves are
+Only plain notes (pitches, durations), voices, and staves are
 converted.
 
 
index a26ad1e63b72c5e6039b9adf60457a09d50a6402..dade870934cde4199ac39566a2ac1b3f1b580cc4 100644 (file)
@@ -123,7 +123,7 @@ thickness of our staff lines, which are also much thicker than Henle's
 lines.
 
 @multitable @columnfractions  .1 .3 .3 .3
-@item  @tab
+@item @tab
 @iftex
 @image{henle-flat-bw,4cm}
 @end iftex
@@ -147,7 +147,7 @@ lines.
 <img src=lily-flat-bw.png>
 @end html
 
-@item
+@item @tab
 Henle (2000)
 @tab
 B@"{a}renreiter (1950)
@@ -206,7 +206,7 @@ in the last two measures form down-stem/up-stems clumps of notes.
 Producing good engraving requires skill and knowledge.  As the
 previous examples show, there is a lot of subtlety involved in music
 engraving, and unfortunately, only a small fraction of these details
-are documented.  Master engraver must learn all these details from
+are documented.  Master engravers must learn all these details from
 experience or from other engravers, which is why it takes so long to
 become a master.  As an engraver gets older and wiser, he will be able
 to produce better and more complex pieces.  A similar situation is
@@ -220,7 +220,7 @@ handled.
 This has an important implication for the design of the program: at
 any time, almost every piece of formatting code must be considered as
 temporary. When the need arises, it is to be replaced a solution that
-will cover even more cases.  is A ``plug-in'' architecture is a clean
+will cover even more cases.  A ``plug-in'' architecture is a clean
 way to accomplish this. This is an architecture where new pieces of
 code can be inserted in the program dynamically.  In such a program, a
 new solution can be developed along-side the existing code. For
@@ -238,7 +238,7 @@ For example, consider the following fragment of notation:
 @lilypond
 \score { \notes \relative c'' {
 \stemUp
-    a4^\f f8
+    a4^\f f'8
        }
 \paper { raggedright = ##t }
      }
@@ -254,7 +254,7 @@ high note and the `f', as shown in this example:
 \score { \notes \relative c'' {
 \stemUp
     \once\property Voice. DynamicLineSpanner  \override #'padding = #4.0 
-    a4^\f f8
+    a4^\f f'8
        }
 \paper { raggedright = ##t }
      }
index b94ada7b0317868c7b899285d8a44112e2669277..462834c97a85c48976f451d070db8d56edf83ce8 100644 (file)
@@ -1,6 +1,9 @@
 \input texinfo @c -*-texinfo-*-
 @setfilename lilypond.info
 @settitle GNU LilyPond
+@iftex
+@afourpaper
+@end iftex
 
 
 
index 0396005cd3f93edc437cd25f06805fd3b043676c..e269cc8a5f891df2ada33107a0c11cf6a4997e3c 100644 (file)
@@ -1892,11 +1892,12 @@ c'4 \breathe d4
 @end lilypond
 
 The glyph of the breath mark can be tweaked by overriding the
-@code{text} property of the @code{BreathingSign} layout object with the name of
-any glyph of @ref{The Feta font}.  For example,
+@code{text} property of the @code{BreathingSign} layout object with
+any markup text.   For example,
 @lilypond[fragment,verbatim,relative]
 c'4
-\property Voice.BreathingSign \override #'text = #"scripts-rvarcomma"
+\property Voice.BreathingSign \override #'text
+ = #(make-musicglyph-markup "scripts-rvarcomma")
 \breathe
 d4
 @end lilypond
@@ -2264,6 +2265,8 @@ for example,
     g4
 }
 @end lilypond
+
+@noindent
 The overrides should also be reverted inside the grace section.
 
 If the layout of grace sections must be changed throughout the music,
@@ -2756,7 +2759,7 @@ down = \notes { bassdrum4 snare8 bd r bd sn4 }
 
 @end lilypond
 In the above example the music was transformed using the list @code{'drums}.
-Currently the following lists are defined in @file{scm/drums.scm}:
+The following lists are defined in @file{scm/drums.scm}:
 @table @code
 @item 'drums
 to typeset a typical drum kit on a five-line staff:
@@ -3552,7 +3555,7 @@ beginning of a piece, e.g. nearby the initial clef or time signature of
 each staff.  The range is graphically specified by two noteheads, that
 represent the minimum and maximum pitch.  Some publishers use a textual
 notation: they put the range in words in front of the corresponding
-staff.  LilyPond currently only supports the graphical ambitus notation.
+staff.  LilyPond only supports the graphical ambitus notation.
 
 To apply, add the @internalsref{Ambitus_engraver} to the
 @internalsref{Voice} context, i.e.
@@ -4600,7 +4603,7 @@ output:
 
 Support for ancient notation is still under heavy development.
 Regardless of all of the current limitations (see the bugs section
-below for details), it currently includes features for mensural
+below for details), it includes features for mensural
 notation and Gregorian Chant notation.  There is also limited support
 for figured bass notation.
 
@@ -4651,7 +4654,7 @@ correctly align with ligatures.
 Accidentals must not be printed within a ligature, but instead need to
 be collected and printed in front of it.
 
-Augmentum dots within ligatures are currently not handled correctly.
+Augmentum dots within ligatures are  not handled correctly.
 
 
 @node Ancient note heads
@@ -4705,7 +4708,7 @@ frequently used in contemporary music notation.
 @syntax
 
 Use the @code{style} property of grob @internalsref{Accidental} to
-select ancient accidentals.  Currently supported styles are
+select ancient accidentals.   Supported styles are
 @code{mensural}, @code{vaticana}, @code{hufnagel} and @code{medicaea}.
 
 @lilypond[singleline,26pt]
@@ -4778,7 +4781,7 @@ signatures.
 @syntax
 
 Use the @code{style} property of grob @internalsref{Rest} to select
-ancient accidentals.  Currently supported styles are @code{classical},
+ancient accidentals.   Supported styles are @code{classical},
 @code{neo_mensural} and @code{mensural}.  @code{classical} differs
 from the @code{default} style only in that the quarter rest looks like
 a horizontally mirrored 8th rest.  The @code{neo_mensural} style suits
@@ -5034,7 +5037,7 @@ For modern clefs, see @ref{Clef}.  For the percussion clef, see
 
 Use the @code{flag-style} property of grob @internalsref{Stem} to
 select ancient flags.  Besides the @code{default} flag style,
-currently only @code{mensural} style is supported:
+ only @code{mensural} style is supported:
 
 @lilypond[fragment,singleline,verbatim]
   \property Voice.Stem \set #'flag-style = #'mensural
@@ -5075,7 +5078,7 @@ Gregorian Chant notation.
 
 @syntax
 
-There is limited support for mensural time signatures.  Currently, the
+There is limited support for mensural time signatures.   The
 glyphs are hard-wired to particular time fractions.  In other words,
 to get a particular mensural signature glyph with the @code{\time n/m}
 command, @code{n} and @code{m} have to be chosen according to the
@@ -5131,7 +5134,7 @@ following table:
 @end lilypond
 
 Use the @code{style} property of grob @internalsref{TimeSignature} to
-select ancient time signatures.  Currently supported styles are
+select ancient time signatures.  Supported styles are
 @code{neo_mensural} and @code{mensural}.  The above table uses the
 @code{neo_mensural} style.  This style is appropriate e.g. for the
 incipit of transcriptions of mensural pieces.  The @code{mensural}
@@ -5147,7 +5150,7 @@ signatures.
 
 @refbugs
 
-Mensural signature glyphs are currently mapped to time fractions in a
+Mensural signature glyphs are  mapped to time fractions in a
 hard-wired way.  This mapping is sensible, but still arbitrary: given
 a mensural time signature, the time fraction represents a modern meter
 that usually will be a good choice when transcribing a mensural piece
@@ -5155,10 +5158,10 @@ of music.  For a particular piece of mensural music, however, the
 mapping may be unsatisfactory.  In particular, the mapping assumes a
 fixed transcription of durations (e.g. brevis = half note in 2/2,
 i.e. 4:1).  Some glyphs (such as the alternate glyph for 6/8 meter)
-are currently not at all accessible through the @code{\time} command.
+are  not at all accessible through the @code{\time} command.
 
 Mensural time signatures are supported typographically, but not yet
-musically.  The internal representation of durations is currently
+musically.  The internal representation of durations is 
 based on a purely binary system; a ternary division such as 1 brevis =
 3 semibrevis (tempus perfectum) or 1 semibrevis = 3 minima (cum
 prolatione maiori) is not correctly handled: event times in ternary
@@ -5395,7 +5398,7 @@ square bracket above the ligature:
 
 To select a specific style of ligatures, a proper ligature engraver
 has to be added to the @internalsref{Voice} context, as explained in
-the following subsections.  Currently, only white mensural ligatures
+the following subsections.   Only white mensural ligatures
 are supported with certain limitations.  Support for Editio Vaticana
 will be added in the future.
 
@@ -5411,7 +5414,7 @@ will be added in the future.
 @cindex White mensural ligatures
 
 There is limited support for white mensural ligatures.  The
-implementation is still experimental; it currently may output strange
+implementation is still experimental; it may output strange
 warnings or even crash in some cases or produce weird results on more
 complex ligatures.