]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor changes from mailist.
authorGraham Percival <graham@percival-music.ca>
Thu, 23 Feb 2006 06:37:11 +0000 (06:37 +0000)
committerGraham Percival <graham@percival-music.ca>
Thu, 23 Feb 2006 06:37:11 +0000 (06:37 +0000)
ChangeLog
Documentation/user/advanced-notation.itely
Documentation/user/global.itely
Documentation/user/invoking.itely
Documentation/user/tutorial.itely

index 9a0270d1bb4b0bfefe0b0660d353bf8f159d9581..cf68c7a08666da502860b9ffb1494bd2e00d980c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
 2006-02-23  Graham Percival  <gpermus@gmail.com>
 
        * Documentation/user/ basic-notation, advanced-notation,
-       global.itely: minor fixes from mailist.
+       global.itely, invoking.itely, tutorial,itely:
+       minor fixes from mailist.
 
 2006-02-23  Heikki Junes  <hjunes@cc.hut.fi>
 
index ee50987f10026637ff0cd287e1a6a85272b55445..a262c9fae4f31223f5d9dbeef70b33f7659a6b0b 100644 (file)
@@ -200,13 +200,19 @@ bar lines,
   \key cis \major
   \clef alto
   \set Score.rehearsalMarkAlignSymbol = #'key-signature
-  \mark "on-key"
+  \mark "on key"
   cis
- \key ces \major
 \key ces \major
   \set Score.rehearsalMarkAlignSymbol = #'clef
   \clef treble
   \mark "on clef"
   ces
+  \set Score.rehearsalMarkAlignSymbol = #'time-signature
+  \key d \minor
+  \clef tenor
+  \time 3/4
+  \mark "on time"
+  c
 }
 @end lilypond
 
index 2b96727b1efeff74e2b3ac99cafbefded25c2a95..a732234816367a3867d54ea6c5f3c47db2affd92 100644 (file)
@@ -1287,20 +1287,20 @@ such symbols and force uniform equal-duration spacing, use
 @code{Score.SpacingSpanner #'uniform-stretching}.  This
 property can only be changed at the beginning of a score,
 
-@lilypond[quote,ragged-right,relative=2,fragment]
+@lilypond[quote,ragged-right,relative=2,fragment,verbatim]
 \new Score \with {
   \override SpacingSpanner #'uniform-stretching = ##t
 } <<
   \new Staff{
     \times 4/5 {
-      c'8 c'8 c'8 c'8 c'8
+      c8 c8 c8 c8 c8
     }
-    c'8 c'8 c'8 c'8
+    c8 c8 c8 c8
   }
   \new Staff{
-    c'8 c'8 c'8 c'8
+    c8 c8 c8 c8
     \times 4/5 {
-      c'8 c'8 c'8 c'8 c'8
+      c8 c8 c8 c8 c8
     }
   }
 >>
@@ -1310,7 +1310,7 @@ property can only be changed at the beginning of a score,
 When @code{strict-note-spacing} is set, notes are spaced without
 regard for clefs, bar lines, and grace notes,
 
-@lilypond[quote,ragged-right,relative=2,fragment]
+@lilypond[quote,ragged-right,relative=2,fragment,verbatim]
 \override Score.SpacingSpanner #'strict-note-spacing = ##t 
 \new Staff { c8[ c \clef alto c \grace { c16[ c] } c8 c c]  c32[ c32] }
 @end lilypond
index 08a4d79e94e2962b0a599886f483ef401f6dfea4..eb28a41526e7bd53a0ebc027abfcedf3a885e6b5 100644 (file)
@@ -120,6 +120,9 @@ available, and exit.
 @item -h,--help
 Show a summary of usage.
 
+@item -H,--header=FIELD
+Dump a header field to file BASENAME.FIELD
+
 @item --include, -I=@var{directory}
 Add @var{directory} to the search path for input files.
 @cindex file searching
index 442a464fb66367df89f3ca09b82edf009fce0d0b..a25dac26ad6915ecf8c14161cf9572917d91aa08 100644 (file)
@@ -71,7 +71,9 @@ of music, a @rglos{scale}.  A @rglos{note} can be entered by typing its
 name, from @samp{a} through @samp{g}.  So, if you enter
 
 @example
+@{
 c d e f g a b
+@}
 @end example
 
 @noindent
@@ -81,6 +83,14 @@ the result looks like this
 c d e f g a b
 @end lilypond
 
+Every piece of LilyPond input needs to have @{ curly braces @} placed
+around the input.  For the rest of this manual, most examples will
+omit these braces, but don't forget them in your own music!
+
+@cindex Case sensitive
+In addition, LilyPond input is case sensitive.  @code{ @{ c d e @} } is
+valid input; @code{ @{ C D E @} } will produce an error message.
+
 The @rglos{duration} of a note is specified by a number after the note
 name.  @samp{1} for a @rglos{whole note}, @samp{2} for a @rglos{half note},
 @samp{4} for a @rglos{quarter note} and so on
@@ -167,18 +177,18 @@ s4_" "
 s16_" "
 @end lilypond
 
-
 Remember to enclose the notes and commands in curly braces
 @code{@{@tie{}@dots{}@tie{}@}} to convert it to printable output.
 
-@lilypond[fragment,quote,noindent,line-width=55\staff-space]
+@c @li lypond[fragment,quote,noindent,line-width=55\staff-space]
+@lilypond[fragment,quote,noindent,verbatim]
 \time 3/4
 \clef bass
 c2 e4 g2.
 f4 e d c2 r4
 @end lilypond
 
-For more elaborate information on
+For more information on
 
 @quotation
 @table @asis