From: Graham Percival <graham@percival-music.ca>
Date: Thu, 23 Feb 2006 06:37:11 +0000 (+0000)
Subject: Minor changes from mailist.
X-Git-Tag: release/2.7.37~47
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2de0998060ad7405a9e58e0dc7e4feee18e32536;p=lilypond.git

Minor changes from mailist.
---

diff --git a/ChangeLog b/ChangeLog
index 9a0270d1bb..cf68c7a086 100644
--- 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>
 
diff --git a/Documentation/user/advanced-notation.itely b/Documentation/user/advanced-notation.itely
index ee50987f10..a262c9fae4 100644
--- a/Documentation/user/advanced-notation.itely
+++ b/Documentation/user/advanced-notation.itely
@@ -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
 
diff --git a/Documentation/user/global.itely b/Documentation/user/global.itely
index 2b96727b1e..a732234816 100644
--- a/Documentation/user/global.itely
+++ b/Documentation/user/global.itely
@@ -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
diff --git a/Documentation/user/invoking.itely b/Documentation/user/invoking.itely
index 08a4d79e94..eb28a41526 100644
--- a/Documentation/user/invoking.itely
+++ b/Documentation/user/invoking.itely
@@ -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
diff --git a/Documentation/user/tutorial.itely b/Documentation/user/tutorial.itely
index 442a464fb6..a25dac26ad 100644
--- a/Documentation/user/tutorial.itely
+++ b/Documentation/user/tutorial.itely
@@ -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