]> git.donarmstrong.com Git - lilypond.git/commitdiff
rename.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 23 Jul 2003 21:49:07 +0000 (21:49 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 23 Jul 2003 21:49:07 +0000 (21:49 +0000)
13 files changed:
ChangeLog
Documentation/user/internals.itely
Documentation/user/refman.itely
GNUmakefile.in
input/regression/pedal.ly
input/regression/tuplet-properties.ly
input/test/bar-number-every-fifth.ly [deleted file]
input/test/bar-number-regular-interval.ly [new file with mode: 0644]
input/test/pedal.ly
ly/engraver-init.ly
make/lilypond.redhat.spec.in
mf/feta-generic.mf
python/lilylib.py

index 19e30002d43a272e2d6408baa795d2525a7f99f6..fa80cee7be6c23d173eac334e87e09eb4e51996d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-07-23  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * input/test/bar-number-regular-interval.ly: rename.
+
+       * Documentation/user/*: various fixes. 
+
 2003-07-24  Heikki Junes  <hjunes@cc.hut.fi>
 
        * Documentation/{ many }: polish for update-all-menus. typos.
index a2cd3b74a011f915a51e17fa5abc8a5365f23903..10c5ee88ab3c12610164818e678b717b8cbe068a 100644 (file)
@@ -137,10 +137,11 @@ music expressions.  Consider the following example.
 @noindent
 The sequential music is interpreted by the Score context initially,
 but when a note is encountered, contexts are setup to accept that
-note.  In this case, a Thread, Voice, and Staff context are created.
-The rest of the sequential music is also interpreted with the same
-Thread, Voice, and Staff context, putting the notes on the same staff,
-in the same voice.
+note.  In this case, a @code{Thread},@code{Voice}, and @code{Staff}
+context are created.  The rest of the sequential music is also
+interpreted with the same @code{Thread}, @code{Voice}, and
+@code{Staff} context, putting the notes on the same staff, in the same
+voice.
 
 @node Context properties
 @subsection Context properties
@@ -333,14 +334,14 @@ example, a very simple Staff context is created: one that will put
 note heads on a staff symbol.
 
 @example
-\translator @code{
+\translator @{
   \type "Engraver_group_engraver"
   \name "SimpleStaff"
   \alias "Staff"
   \consists "Staff_symbol_engraver"
   \consists "Note_head_engraver"
   \consistsend "Axis_group_engraver"
-}@
+@}
 @end example
 
 @noindent
@@ -598,7 +599,7 @@ always be the first item in a block.
 @section Music storage format
 
 Music in LilyPond is entered as music expressions. This section
-discusses different types of music expressions, and explains
+discusses different types of music expressions, and explains how
 information is stored internally. This internal storage is accessible
 through the Scheme interpreter, so music expressions may be
 manipulated using Scheme functions. 
@@ -739,10 +740,7 @@ and @internalsref{GraceMusic} has its single argument in
 @subsection Manipulating music expressions
 
 Music objects and their properties can be accessed and manipulated
-directly, through the @code{\apply} mechanism.  Scheme functions can
-read and write properties using the functions
-@code{ly:get-music-property} and @code{ly:set-music-property!}.
-
+directly, through the @code{\apply} mechanism.  
 The syntax for @code{\apply} 
 @example
 \apply #@var{func} @var{music}
@@ -751,7 +749,9 @@ The syntax for @code{\apply}
 @noindent
 This means that the scheme function @var{func} is called with
 @var{music} as its argument.  The return value of @var{func} is the
-result of the entire expresssion.
+result of the entire expresssion.  @var{func} may read and write music
+properties using the functions @code{ly:get-music-property} and
+@code{ly:set-music-property!}.
 
 An example is a function that reverses the order of elements in
 its argument:
@@ -764,18 +764,18 @@ its argument:
 @end example
 
 The use of such a function is very limited. The effect of this
-function is void,  when it is applied to an argument which is does not
-have multiple  children, for example
+function is void when applied to an argument which is does not have
+multiple children.  The following function application has no effect:
 
 @example
   \apply #rev-music-1 \grace @{ c4 d4 @}
 @end example
 
 @noindent
-does not do anything: @code{\grace} is stored as
-@internalsref{GraceMusic}, which has no @code{elements}, only a single
-@code{element}. Every generally applicable function for @code{\apply}
-must --like music expressions themselves-- be recursive.
+In this case, @code{\grace} is stored as @internalsref{GraceMusic}, which has no
+@code{elements}, only a single @code{element}. Every generally
+applicable function for @code{\apply} must --like music expressions
+themselves-- be recursive.
 
 The following example is such a recursive function: it first extracts
 the @code{elements} of an expression, reverses them and puts them
@@ -811,7 +811,7 @@ is actually  implemented as a recursive function that replaces the
 above by the internal equivalent of
 @example
   < \context Voice = "1" @{ \voiceOne a @}
-    \context Voice = "2" @{ \voiceTwo a @} >
+    \context Voice = "2" @{ \voiceTwo b @} >
 @end example
 
 Other applications of @code{\apply} are writing out repeats
@@ -831,12 +831,7 @@ LilyPond input to other formats  (@inputfileref{input/test,to-xml.ly})
 @node Lexical details
 @section Lexical details
 
-@menu
-* Strings::                     
-@end menu
 
-@node Strings
-@subsection Strings
 @cindex string
 @cindex concatenate
 
index 8afaa50707e0efa1b2cf3dc5c6fe9f593937bcf0..0295a4dd0c08865544a5a3587b0ed1a7c19f35c0 100644 (file)
@@ -4007,28 +4007,23 @@ which is normally updated automatically for every measure.
 Bar numbers can be typeset at regular intervals instead of at the
 beginning of each line. This is illustrated in the following example,
 whose source is available as
-@inputfileref{input/test,bar-number-every-fifth.ly}
+@inputfileref{input/test,bar-number-regular-interval.ly}
 
-@lilypondfile[notexidoc]{bar-number-every-fifth.ly}
-
-The start of that numbering can also be reset, as demonstrated in
-@inputfileref{input/test,bar-number-every-five-reset.ly}.
-
-@lilypondfile[notexidoc]{bar-number-every-five-reset.ly}
+@lilypondfile[notexidoc]{bar-number-regular-interval.ly}
 
 
 @seealso
 
 @internalsref{BarNumber}.
 @inputfileref{input/test,bar-number-every-five-reset.ly}.
-@inputfileref{input/test,bar-number-every-fifth.ly}
+@inputfileref{input/test,bar-number-regular-interval.ly}
 
 @refbugs
 
 Bar numbers can collide with the @internalsref{StaffGroup} bracket, if
-there is one at the top. To solve this, You have to twiddle with the
-@internalsref{padding} property of @internalsref{BarNumber} if your
-score starts with a @internalsref{StaffGroup}.
+there is one at the top. To solve this, In that case, the
+@internalsref{padding} property of @internalsref{BarNumber} can be
+used to position the number correctly.
 
 @node Instrument names
 @subsection Instrument names
@@ -4148,11 +4143,8 @@ durations.  This can be done with augmentation dots or fractions:
  R1*13/8*12
 @end lilypond
 
-A @code{R} spanning a single measure is printed as a whole rest
-centered in the measure (or a breve when the measure lasts longer than
-two whole notes), regardless of the time signature.
-
+A @code{R} spanning a single measure is printed as either a whole rest
+or a breve, centered in the measure regardless of the time signature.
 
 @cindex text on multi-measure rest
 @cindex script on multi-measure rest
@@ -4201,7 +4193,7 @@ Be careful when entering multimeasure rests followed by whole notes,
  R1*4 cis cis 
 @end example
 will enter two notes lasting four measures each. When @code{skipBars}
-is set, then the result will look OK6, but the bar numbering will be
+is set, then the result will look OK, but the bar numbering will be
 off.
 
 @node Automatic part combining
@@ -4304,21 +4296,20 @@ The part combiner is slated to be rewritten [TODO: explain why].
 @node Frenched scores
 @subsection Frenched scores
 
-In orchestral scores, staff lines that only have rests are usually removed.
-This saves some space. This style is called `French Score'. 
+In orchestral scores, staff lines that only have rests are usually
+removed.  This saves some space. This style is called `French Score'.
+For @internalsref{Lyrics}, @internalsref{LyricsVoice},
+@internalsref{ChordNames} and @internalsref{FiguredBass}, this is
+switched on by default.  When these line of these contexts turn out
+empty after the line-breaking process, they are removed.
 
-@syntax
 
-This is supported through the @code{RemoveEmptyStaff}. This staff is
-removed when it turns out empty (or containing multimeasure rests)
-after the line-breaking process.
+For normal staffs, a specialized @internalsref{Staff} context is
+available, which does the same: staffs containing nothing (or only
+multi measure rests) are removed. The context definition is stored in
+@code{\RemoveEmptyStaffContext} variable. Observe how the second staff
+in this example disappears in the second line.
 
-For @internalsref{Lyrics}, @internalsref{LyricsVoice},
-@internalsref{ChordNames} and @internalsref{FiguredBass}, this is
-switched on by default. For normal staffs, it is available as a
-specialized @internalsref{Staff} context, with the name variable
-@code{\RemoveEmptyStaffContext}.  Observe how the second staff in this
-example disappears in the second line.
 
 @lilypond[verbatim]
 \score  {
@@ -6298,7 +6289,8 @@ known as German gothic neumes) or Medicaea (kind of a very simple
 forerunner of the Editio Vaticana).  As soon as Hufnagel ligature
 engraver and Medicaea ligature engraver will have been implemented, it
 will be as simple as replacing the ligature engraver in the
-VoiceContext to get the desired notation style from the same input.
+@internalsref{Voice} context to get the desired notation style from
+the same input.
 
 The following table shows the code fragments that produce the
 ligatures in the above neumes table.  The letter in the first column
@@ -6585,11 +6577,11 @@ Spaces or dashes may be inserted by using @code{_}. Brackets are
 introduced with @code{[} and @code{]}.
 
 @example
-       < [4 6] 8 [_ 12]>
+       < [4 6] 8 [_! 12]>
 @end example
 @lilypond[fragment]
  \context FiguredBass
-\figures { < [4 6] 8 [_ 12]> }
+\figures { < [4 6] 8 [_! 12]> }
 @end lilypond
 
 Although the support for figured bass may superficially resemble chord
@@ -6663,8 +6655,8 @@ A cluster is engraved as the envelope of a set of
 cluster-notes. Cluster notes are created by applying the function
 @code{notes-to-clusters} to a sequence of chords, eg.
 @c
-@lilypond[relative 2]
-    \apply #notes-to-clusters {  << c e >> <<b f'>>  }
+@lilypond[relative 1,verbatim]
+    \apply #notes-to-clusters {  <<c e >> <<b f'>>  }
 @end lilypond
 
 The following example (from
@@ -6708,8 +6700,7 @@ The following are supported
 
 @lilypond[singleline]
 \score {
-  <  \notes {
-        \fatText
+  <  \addlyrics \notes {
         b'
         ^\shortfermata
         _\shortfermata
@@ -6745,16 +6736,31 @@ There are situations where default layout decisions are not
 sufficient.  In this section we discuss ways to override these
 defaults.
 
-Formatting is internally done by manipulating so called objects (graphic
-objects). Each object carries with it a set of properties (object
-properties) specific to that object.  For example, a stem object has
-properties that specify its direction, length and thickness.
+Formatting is internally done by manipulating so called objects
+(graphic objects). Each object carries with it a set of properties
+(object or layout properties) specific to that object.  For example, a
+stem object has properties that specify its direction, length and
+thickness.
 
 The most direct way of tuning the output is by altering the values of
 these properties. There are two ways of doing that: first, you can
 temporarily change the definition of one type of object, thus
 affecting a whole set of objects.  Second, you can select one specific
-object, and set a object property in that object.
+object, and set a layout property in that object.
+
+Do not confuse layout properties with translation
+properties. Translation properties always use a mixed caps style
+naming, and are manipulated using @code{\property}
+@example
+  \property Context.propertyName  = @var{value}
+@end example
+Layout properties are use Scheme style variable naming, i.e.  lower
+case words separated with dashes. They are symbols, and should always
+be quoted using @code{#'}.  For example, this could be an imaginary
+layout property name:
+@example
+  #'layout-property-name
+@end example
 
 @menu
 * Tuning objects ::             
@@ -6772,10 +6778,10 @@ object, and set a object property in that object.
 
 @cindex object description
 
-The definition of an object is actually a list of default object
+The definition of an object is a list of default object
 properties. For example, the definition of the Stem object (available
-in @file{scm/define-grobs.scm}), includes the following definitions for
-@internalsref{Stem}
+in @file{scm/define-grobs.scm}), includes the following definitions
+for @internalsref{Stem}
 
 @example
         (thickness . 1.3)
@@ -6785,14 +6791,14 @@ in @file{scm/define-grobs.scm}), includes the following definitions for
 @end example
 
 
-By adding variables on top of these existing definitions, the system
-default is overridden, and the appearance of a layout objects is
-altered.
+Adding variables on top of this existing definition overrides the
+system default, and alters the resulting appearance of the layout
+object.
 
 @syntax
 
 
-Changing a variable for only   one object is commonly achieved with
+Changing a variable for only one object is commonly achieved with
 @code{\once}:
 
 @example
@@ -6830,7 +6836,7 @@ An existing definition may be removed by the following command
 @end example
 @c
 All @code{\override} and @code{\revert} commands should be balanced.
-The @code{\set} shorthand, performs a revert followed by an override,
+The @code{\set} shorthand performs a revert followed by an override,
 and is often more convenient to use
 
 @example
@@ -6859,32 +6865,36 @@ Reverting a setting which was not set in the first place has no
 effect. However, if the setting was set as a system default, this may
 remove the default value, and this may give surprising results,
 including crashes.  In other words, @code{\override} and
-@code{\revert} must be carefully balanced.
-
-These are examples of correct nesting of @code{\override}, @code{\set},
-@code{\revert}. 
+@code{\revert} must be carefully balanced.  The following are examples
+of correct nesting of @code{\override}, @code{\set}, @code{\revert}.
 
+@itemize @bullet
+@item
 A clumsy but correct form:
 @example
   \override \revert \override \revert \override \revert
 @end example
 
+@item
 Shorter version of the same:
 @example 
   \override \set \set  \revert
 @end example
 
+@item
 A short form, using only @code{\set}. This requires you to know the
 default value:
 @example
   \set \set \set \set @var{to default value}
 @end example
 
+@item
 If there is no default (i.e. by default, the object property is unset),
 then you can use
 @example
   \set \set \set \revert
 @end example
+@end itemize
 
 For the digirati, the object description is an Scheme association
 list. Since a Scheme list is a singly linked list, we can treat it as
@@ -6926,18 +6936,17 @@ to crashes.
 
 
 
-Using @code{\override} and @code{\set}, requires three pieces of
-information: the name of the layout object, the context and the name
+Three pieces of information are required to use @code{\override} and
+@code{\set}: the name of the layout object, the context and the name
 of the property.  We demonstrate how to glean this information from
 the notation manual and the generated documentation.
 
 The generated documentation is a set of HTML pages which should be
 included if you installed a binary distribution, typically in
 @file{/usr/share/doc/lilypond}.  They are also available on the web:
-go to the @uref{LilyPond website,http://lilypond.org}, click
-``Documentation: Index'' on the side bar, look in the ``Information
-for users'' section, and click on ``Documentation of internals.''  It
-is advisable to bookmark either the local HTML files if possilbe. They
+go to the @uref{http://lilypond.org,LilyPond website}, click
+``Documentation'', and then ``Program reference'' on the side bar. It
+is advisable to bookmark either the local HTML files if possible. They
 will load faster than the ones on the web.  If you use the version
 from the web, you must check whether the documentation matches the
 program version: the documentation is generated from the definitions
@@ -6949,7 +6958,7 @@ LilyPond version.
 
 Suppose we want to move the fingering indication in the fragment below
 
-@lilypond[relative=2]
+@lilypond[relative=2,verbatim]
 c-2
 \stemUp
 f
@@ -6964,19 +6973,16 @@ instructions}), you will notice that it says
 @internalsref{FingerEvent} and @internalsref{Fingering}.
 @end quotation
 
-This implies that the fingerings, once entered, are internally stored
-as @code{FingerEvent} music objects. When printed, a @code{Fingering}
+@noindent
+In other words, the fingerings once entered, are internally stored as
+@code{FingerEvent} music objects. When printed, a @code{Fingering}
 layout object is created for every @code{FingerEvent}.
 
-@ifhtml
-When we follow the link of @internalsref{Fingering},
-@end ifhtml
-@ifnothtml
-When we look up @internalsref{Fingering} in the generated
-documentation,
-@end ifnothtml
-we see a list of interfaces. The Fingering object has a number of
-different functions, and each of those is captured in an interface.
+The Fingering object has a number of different functions, and each of
+those is captured in an interface.  when we look up
+@internalsref{Fingering} in the generated documentation.
+
+
 
 The @code{Fingering} object has a fixed size
 (@internalsref{item-interface}), the symbol is a piece of text
@@ -6998,7 +7004,7 @@ it.  Finally, it denotes a fingering instruction, so it has
 For the vertical placement, we have to look under
 @code{side-position-interface}.
 @quotation
- side-position-interface
+@code{side-position-interface}
 
   Position a victim object (this one) next to other objects (the
   support).  In this case, the direction signifies where to put the
@@ -7022,8 +7028,10 @@ between the note and the fingering
 \once \property Voice.Fingering \set #'padding = #3
 @end example
 
-Before the object is created, we get
-@lilypond[relative=2,fragment]
+Inserting this command before the Fingering object is created,
+i.e. before @code{c2}, yields the following result.
+
+@lilypond[relative=2,fragment,verbatim]
 \once \property Voice.Fingering
   \set #'padding = #3
 c-2
@@ -7043,19 +7051,12 @@ translating them to a @code{Fingering} object.  Such a module is called
 an @emph{engraver}.  The documentation of the @code{Fingering_engraver}
 says
 @example
-Fingering_engraver is part of contexts: Voice and TabVoice
+Fingering_engraver is part of contexts: Voice 
 @end example
-so tuning the settings for Fingering should be done using either
+so tuning the settings for Fingering should be done with
 @example
   \property Voice.Fingering \set @dots{}
 @end example
-or
-@example
-  \property TabVoice.Fingering \set @dots{}
-@end example
-
-Since the @code{TabVoice} is only used for tab notation, we see that
-the first guess @code{Voice} was indeed correct.
 
 Of course, the tweak may also done in a larger context than
 @code{Voice}, for example, @internalsref{Staff} or
@@ -7070,11 +7071,13 @@ tweak by browsing the internals document.
 @node Applyoutput
 @subsection Applyoutput
 
-The most versatile way of tuning object is @code{\applyoutput}. Its
+The most versatile way of tuning an object is @code{\applyoutput}. Its
 syntax is
 @example
 \applyoutput @var{proc}
 @end example
+
+@noindent
 where @var{proc} is a Scheme function, taking four arguments.
 
 When interpreted, the function @var{proc} is called for every layout object found
@@ -7115,26 +7118,30 @@ the use of @code{\outputproperty}.
 
 @refbugs
 
-If possible, avoid this feature: the semantics are not very clean, and
-the syntax and semantics are up for rewrite.
+This command is slated for removal.  Please use the
+@code{\applyoutput} command, see @ref{Applyoutput}.
 
 
 @node Font selection
 @subsection Font selection
 
-The most common thing to change about the appearance of fonts is
-their size. The font size of any context can be easily
-changed by setting the @code{fontSize} property for that context:
+The most common thing to change about the appearance of fonts is their
+size. The font size of any context can be easily changed by setting
+the @code{fontSize} property for that context.  Its value is an
+integer: negative numbers make the font smaller, positive numbers
+larger. An example is given below.
 @c
 @lilypond[fragment,relative=1,verbatim,quote]
   c4 c4 \property Voice.fontSize = #-1
   f4 g4
 @end lilypond
- This command will set @code{font-relative-size} (see below),
- and does not change the size of variable symbols, such as
-beams or slurs.  You can use this command to get smaller symbol for
-cue notes, but that involves some more subtleties. An elaborate
-example of those is in @inputfileref{input/test,cue-notes.ly}.
+This command will set @code{font-relative-size} (see below), and does
+not change the size of variable symbols, such as beams or slurs.
+
+
+One of the uses of @code{fontSize} is to get smaller symbol for cue
+notes. An elaborate example of those is in
+@inputfileref{input/test,cue-notes.ly}.
 
 @cindex magnification
 
@@ -7155,8 +7162,11 @@ The font used for printing a object can be selected by setting
   \property Staff.TimeSignature
     \set #'font-name = #"cmr17"
 @end example
-You may use any font which is available to @TeX{}, such as foreign
-fonts or fonts that do not belong to the Computer Modern font family.
+
+@noindent
+Any font can be used, as long as it is available to @TeX{}. Possible
+fonts include foreign fonts or fonts that do not belong to the
+Computer Modern font family.
 
 Font selection for the standard fonts, @TeX{}'s Computer Modern fonts,
 can also be adjusted with a more fine-grained mechanism.  By setting
@@ -7203,9 +7213,9 @@ For any of these properties, the value @code{*} (i.e. the symbol
 @code{*}, entered as @code{#'*}), acts as a wildcard. This can be used
 to override default setting, which are always present. For example:
 @example
-  \property Lyrics.LyricText \override #'font-series = #'bold
-  \property Lyrics.LyricText \override #'font-family = #'typewriter
-  \property Lyrics.LyricText \override #'font-shape  = #'*
+  \property Lyrics . LyricText \override #'font-series = #'bold
+  \property Lyrics . LyricText \override #'font-family = #'typewriter
+  \property Lyrics . LyricText \override #'font-shape  = #'*
 @end example
 
 @cindex @code{font-style}
@@ -7254,12 +7264,15 @@ similar to lyrics: simply enter them, surrounded by spaces.
 
 @cindex font switching
 
-The line of the example demonstrates font switching commands.  The
-command only apply to the first following word; enclose a set of texts
-with braces to apply a command to more words.
+The markup in the example demonstrates font switching commands.  The
+command @code{\bold} and @code{\italic} only apply to the first
+following word; enclose a set of texts with braces to apply a command
+to more words.
 @example
   \markup @{ \bold @{ hi there @} @}
 @end example
+
+@noindent
 For clarity, you can also do this for single arguments, e.g.
 @example
   \markup @{ is \italic @{ anyone @} home @}
@@ -7354,11 +7367,14 @@ See @ref{The Feta font} for  a complete listing of the possible glyphs.
 This produces a single character, e.g. @code{\char #65} produces the 
 letter 'A'.
 
-@item \note
-@cindex @code{\note @var{log} @var{dots} @var{dir}}
+@item \note  @var{log} @var{dots} @var{dir}
+@cindex @code{\note}
 
 This produces a note with a stem pointing in @var{dir} direction, with
-duration log @var{log} and @var{dots} augmentation dots.
+duration log @var{log} and @var{dots} augmentation dots. The duration
+log is the negative 2-logarithm of the duration denominator. For
+example, a quarter note has log 2, an eighth note 3 and a breve has
+log -1.
 
 @item \hspace #@var{amount}
 @cindex @code{\hspace}
@@ -7655,9 +7671,10 @@ set. These files should be imported at toplevel, i.e.
        \score @{  ... @}
 @end example
 
-The font definitions are generated using a Scheme function. For more
-details, see the file @file{scm/font.scm}.
-
+The default font size settings for each staff heights are generated
+from the 20pt style sheet. For more details, see the file
+@file{scm/font.scm}.
+l
 
 
 @node Line breaking
@@ -7682,12 +7699,15 @@ point.
 @cindex regular line breaks
 @cindex four bar music. 
 
-If you want linebreaks at regular intervals, you can use the following:
+For linebreaks at regular intervals  use @code{\break} separated by
+skips and repeated with @code{\repeat}:
 @example
 <  \repeat unfold 7 @{ s1 * 4 \break  @}
    @emph{the real music}
 > 
 @end  example
+
+@noindent
 This makes the following 28 measures (assuming 4/4 time) be broken every
 4 measures.
 
@@ -7785,8 +7805,8 @@ Lilypond and @code{ly2dvi})
 
 @refbugs
 
-There is no concept of page breaking, which makes it difficult to
-choose sensible page breaks in multi-page pieces.
+LilyPond has no concept of page layout, which makes it difficult to
+reliably choose page breaks in longer pieces.
 
 
 
@@ -7805,7 +7825,7 @@ range, crescendi and decrescendi make the volume vary linearly between
 their two extremities.  The fractions be adjusted by
 @code{dynamicAbsoluteVolumeFunction} in @internalsref{Voice} context.
 For each type of MIDI instrument, a volume range can be defined.  This
-gives you basic equalizer control, which can enhance the quality of
+gives a basic equalizer control, which can enhance the quality of
 the MIDI output remarkably.  The equalizer can be controlled by
 setting @code{instrumentEqualizer}.
 
index 8e91cc47cc23c2a9b7623f6f423100681ba8f11f..ca00cdaffb57055691eac4e2bc93f3ea39ee8781 100644 (file)
@@ -38,7 +38,7 @@ pfa-fonts:
        (cd $(builddir)/share/lilypond/fonts && \
                tar czvf ../../../$(outbase)/type1.tar.gz type1/*.pfa type1/fonts.* type1/lilypond.* )
 
-install-html-doc: top-web
+install-html-doc: 
        $(INSTALL) -m 755 -d $(local_package_docdir) 
        tar -C $(local_package_docdir)/ -xzf $(outdir)/web.tar.gz
 
index fd19a08589dd9413e8013d338731762c5dc833cc..4e25916ff4fd188aa3746e4e8623feee9b286810 100644 (file)
@@ -1,4 +1,4 @@
-\version "1.7.18"
+\version "1.7.28"
 \header{
 texidoc = "Piano pedal symbols merge stop and start.  The strings are configurable. 
 Text style, bracket style, and a mixture of both are supported.
@@ -24,13 +24,13 @@ c4 d e f g
   c, -\sustainDown d e -\sustainUp -\sustainDown f
   -\sustainUp g b 
 
-  \property Staff.UnaCordaPedal \override #'pedal-type = #'mixed
+  \property Staff.pedalUnaCordaStyle = #'mixed
   d \unaCorda e f g
   \break
    | b b b  \treCorde c |
 
 
-\property Staff.SustainPedal \override #'pedal-type = #'bracket
+\property Staff.pedalSustainStyle = #'bracket
 
 c4 d e -\sustainDown b c c, -\sustainUp -\sustainDown  d8-[ c]  e8-[ e -\sustainUp -\sustainDown] f4 d
 -\sustainUp g -\sustainDown b b, -\sustainUp c'
index a65e13e1ec29004b014775ab2c9d0f72869235ef..ef7f0871e10c12a0e630c4790f5dd53d81e595b9 100644 (file)
@@ -34,7 +34,7 @@ NB should have no bracket, B should have bracket.
        \times 4/6 { c_"shorter, no edges" f b  b f c}  
        \property Voice.TupletBracket \revert #'edge-height
        \property Voice.TupletBracket \revert #'shorten-pair
-       \property Voice.TupletBracket \override #'edge-widen = #'(0.5 . 0.5)
+       \property Voice.TupletBracket \override #'bracket-flare = #'(0.5 . 0.5)
        \times 2/3 { b^""^""^"angled edges" b b }
        \property Voice.TupletBracket \revert #'direction
        \times 2/3 { b b b }
diff --git a/input/test/bar-number-every-fifth.ly b/input/test/bar-number-every-fifth.ly
deleted file mode 100644 (file)
index 5c07446..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-\header {
-    texidoc = "@cindex Bar Number Every Fifth
-Bar numbers can also be printed at regular intervals.
-" }
-\version "1.7.18"
-
-\score {
-    \context Staff \notes \transpose  c c' {
-       \property Score.BarNumber \override #'break-visibility = #end-of-line-invisible
-       \property Score.barNumberVisibility = #(every-nth-bar-number-visible 5)
-       \property Score.BarNumber \override #'molecule-callback =
-       #(make-molecule-boxer 0.1 0.25 0.25 Text_item::brew_molecule)
-       \property Score.BarNumber \override #'font-relative-size = #1
-       
-       \repeat unfold 11 { c d e f g a b c' } \bar "|."
-    }
-}
-
-
diff --git a/input/test/bar-number-regular-interval.ly b/input/test/bar-number-regular-interval.ly
new file mode 100644 (file)
index 0000000..523280c
--- /dev/null
@@ -0,0 +1,22 @@
+\header {
+    texidoc = "
+
+Bar numbers can also be printed at regular intervals.
+
+" }
+
+\version "1.7.18"
+
+\score {
+    \context Staff \notes \transpose  c c' {
+       \property Score.BarNumber \override #'break-visibility = #end-of-line-invisible
+       \property Score.barNumberVisibility = #(every-nth-bar-number-visible 4)
+       \property Score.BarNumber \override #'molecule-callback =
+       #(make-molecule-boxer 0.1 0.25 0.25 Text_item::brew_molecule)
+       \property Score.BarNumber \override #'font-relative-size = #1
+       
+       \repeat unfold 9 { c1 } \bar "|."
+    }
+}
+
+
index 1f6619978a89dcd39e7de2936358e288c2a4d3db..7ccb608cfcb0dd4826f488cde16845763ddfc6c4 100644 (file)
@@ -1,4 +1,4 @@
-\version "1.7.18"
+\version "1.7.28"
 
 \header{ texidoc = "@cindex Pedal
 Piano pedal symbols merge stop and start.  The strings are configurable. 
@@ -17,12 +17,12 @@ Text style, bracket style, and a mixture of both are supported.  "
        c, -\sustainDown d e -\sustainUp -\sustainDown f
        -\sustainUp g b c
 
-       \property Staff.SustainPedal \override #'pedal-type = #'bracket
+       \property Staff.pedalSustainStyle = #'bracket
 
        c4 d e -\sustainDown b c c, -\sustainUp -\sustainDown  d8-[ c]  e8-[ e -\sustainUp -\sustainDown] f4 d
        -\sustainUp g -\sustainDown b b, -\sustainUp c'
 
-       \property Staff.UnaCordaPedal \override #'pedal-type = #'mixed
+       \property Staff.pedalUnaCordaStyle = #'mixed
 
        c4 d \unaCorda e f g
        b \treCorde c
index 44a478678f991ea0a6bc9a81464526a1bf6e7cb5..25e2ad92e5ba22f94e44e906f41dc0666fbfed94 100644 (file)
@@ -548,7 +548,9 @@ TabVoiceContext =   \translator {
       \name "TabVoice"
       \denies "Thread"
       \consists "Tab_note_heads_engraver"
-
+      \remove "Fingering_engraver"
+      \remove "New_fingering_engraver"
+      
       Slur \override #'font-family       = #'roman
       Slur \override #'molecule-callback = #hammer-molecule-callback
       Slur \override #'direction    = #-1
index b72e0f2061430f71e2ebdfeead708a58e6ff5e31..e9b823b07290948d886642445022488cf130e697 100644 (file)
@@ -58,7 +58,7 @@ make -C mf/ pfa
 make -C Documentation
 
 # make  html
-make web top-web 
+make web
 make -C Documentation/user omf
 
 %install
index c551a2298962dace8c52f6aa9deb4fb46eabcc3e..1e1047981e22ba234f48992a11f4b8ec06d8d29a 100644 (file)
@@ -43,11 +43,11 @@ else:
 %      input feta-banier;
 %      input feta-eindelijk;
 %      input feta-klef;
-       input feta-toevallig;
+%      input feta-toevallig;
        input feta-schrift;
 %      input feta-haak;
 %      input feta-timesig;
-%      input feta-pendaal;
+       input feta-pendaal;
 %      input feta-accordion;
 %      input feta-solfa;
 fi
index ccd5ab842ea2a83083e8f46b0640e11cb6c8e391..3cad32f1f31887b9fad74563596f19c1f366612e 100644 (file)
@@ -204,6 +204,8 @@ def lilypond_version (binary):
        x = []
        def catch_version (match):
                x.append (match.group (1))
+               return ''
+       
        re.sub ('GNU LilyPond ([^\n]+)\n', catch_version, p)
        x.append ('not found')