]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/user/introduction.itely
* scm/output-ps.scm (output-scopes): use ly:paper-lookup for font
[lilypond.git] / Documentation / user / introduction.itely
index 14c7427f5e1b97e19062eff6fff617d049e5cfca..404269b936842cb35279a00cad4b4e464ba80653 100644 (file)
@@ -4,6 +4,7 @@
 @node Introduction
 @chapter Introduction
 
+[TODO: should have introduction of introduction]
 
 The art of music typography is called @emph{(plate) engraving}. The
 term derives from the traditional process of music printing. Only a
@@ -26,42 +27,48 @@ have a bland, mechanical look, which makes them unpleasant to play
 from.
 
 The images below illustrate the difference between traditional
-engraving, typical computer output, and how LilyPond mimicks the
-traditional look. The left picture shows a scan of a flat symbol from
-a Henle edition published in 2000. In the center show symbol from a
-hand engraved B@"{a}renreiter edition of the same music. The left scan
-illustrates typical flaws of computer print: the staff line are thin,
-the weight of the symbol matches the light lines, and the glyph has a
-straight layout with sharp corners. By contrast, the B@"{a}renreiter
-has a bold and almost voluptuous rounded look.  Our flat symbol is
-designed after, among others, this one.  It is rounded, and its weight
-harmonizes with the thickness of our staff lines, which are also much
-thicker than Henle's lines.
+engraving and typical computer output, and the third picture shows how
+LilyPond mimicks the traditional look. The left picture shows a scan
+of a flat symbol from a Henle edition published in 2000. In the center
+show symbol from a hand engraved B@"{a}renreiter edition of the same
+music. The left scan illustrates typical flaws of computer print: the
+staff line are thin, the weight of the symbol matches the light lines,
+and the glyph has a straight layout with sharp corners. By contrast,
+the B@"{a}renreiter has a bold and almost voluptuous rounded look.
+Our flat symbol is designed after, among others, this one.  It is
+rounded, and its weight harmonizes with the thickness of our staff
+lines, which are also much thicker than Henle's lines.
 
 @multitable @columnfractions  .1 .3 .3 .3
 @item @tab
+@ifnotinfo
 @iftex
 @image{henle-flat-bw,4cm}
 @end iftex
-@html
-<img src=henle-flat-bw.png>
-@end html
+@ifnottex
+@image{henle-flat-bw,,,png}
+@end ifnottex
 
 @tab
 @iftex
 @image{baer-flat-bw,4cm}
 @end iftex
-@html
-<img  src=baer-flat-bw.png>
-@end html
+@ifnottex
+@image{baer-flat-bw,,,png}
+@end ifnottex
 
 @tab
 @iftex
 @image{lily-flat-bw,4cm}
 @end iftex
-@html
-<img src=lily-flat-bw.png>
-@end html
+@ifnottex
+@image{lily-flat-bw,,,png}
+@end ifnottex
+@end ifnotinfo
+@ifinfo
+@c workaround for makeinfo-4.6: line breaks and multi-column cookies
+@image{henle-flat-bw,,,png} @image{baer-flat-bw,,,png} @image{lily-flat-bw,,,png}
+@end ifinfo
 
 @item @tab
 Henle (2000)
@@ -239,21 +246,18 @@ frag= \notes {
     }
 \paper { raggedright = ##t }
 
-\score {\frag}
-\score { \frag
-        \paper {
-        linethickness = 1.5 \pt
-        \translator {
-        \ScoreContext
+\score {
+<<   \new Staff \frag
+   \new Staff \with {
         \override Beam #'thickness = #0.3
         \override Stem #'thickness = #0.5
         \override Bar #'thickness = #3.6
-        \override Tie  #'thickness = #2.2
-
-        %% yes, this dirty.
+        \override Tie #'thickness = #2.2
+        \override StaffSymbol #'thickness = #3.0
         \override Tie #'extra-offset = #'(0 . 0.3)
-        }
-}}
+   } \frag
+   >>
+}
 @end lilypond
 
 Formatting rules are also preset variables: each object has variables
@@ -507,8 +511,8 @@ The syntax is also the user-interface for LilyPond, hence it is easily typable,
 @example
   c'4 d'8
 @end example
-Are a quarter note C (the central C) and eighth note D1 (the D above
-central C), as in this example:
+Are a quarter note C (the middle C) and eighth note D1 (the D above
+middle C), as in this example:
 
 @lilypond[fragment]
   c'4 d'8
@@ -520,14 +524,14 @@ like symphonies and operas? The structure is formed by the concept of
 music expressions: by combining small fragments of music into larger
 ones, more complex music can be expressed. For example,
 
-@lilypond[verbatim,fragment]
+@lilypond[verbatim,fragment,relative=1]
 c4
 @end lilypond
 
 Combine this simultaneously with two other notes by enclosing in << and >>.
 
 
-@lilypond[verbatim,fragment]
+@lilypond[verbatim,fragment,relative=1]
   <<c4 d4 e4>>
 @end lilypond
 
@@ -539,7 +543,7 @@ This expression is put in sequence by enclosing it in braces, i.e.,
    { <<c4 d4 e4>> f4  }
 @end verbatim
 
-@lilypond[]
+@lilypond[relative=1]
    \new Voice { <<c4 d4 e4>> f4  }
 @end lilypond
        
@@ -549,7 +553,7 @@ with a simultaneous expression (in this case, a half note).
 @verbatim
   << { <<c4 d4 e4>> f4 } g2 >> 
 @end verbatim
-@lilypond[fragment]
+@lilypond[fragment,relative=1]
 << g2 \\ { <c d e>4 f4 }  >> 
 @end lilypond