+2006-02-28 Graham Percival <gpermus@gmail.com>
+
+ * Documentation/user/ advanced-notation, global: more (final)
+ docs for music expressions, removed special fermatas.
+
2006-02-27 Graham Percival <gpermus@gmail.com>
* Documentation/user/ basic-notation, global: minor changes
accurately. Use @code{<g a>8 <e a>8} instead.
-@ignore
-
-This is covered in articulation; does it really need its
-own doc section? -gp
-@n ode Special fermatas
-@s ubsection Special fermatas
-
-@c index fermatas, special
-
-In contemporary music notation, special fermata symbols denote breaks
-of differing lengths. The following fermatas are supported
-
-@li lypond[quote,ragged-right]
-<<
- \oldaddlyrics {
- b'2
- ^\shortfermata
- _\shortfermata
- r
-
- b'
- ^\fermata
- _\fermata
- r
-
- b'
- ^\longfermata
- _\longfermata
- r
-
- b'
- ^\verylongfermata
- _\verylongfermata
- r
- }
- \new Lyrics \lyricmode {
- \override LyricText #'font-family = #'typewriter
- "shortfermata" "fermata" "longfermata" "verylongfermata"
- }
->>
-@end li lypond
-
-See @ref{Articulations} for general instructions how to apply scripts
-such as fermatas to notes.
-
-@end ignore
-
-
@node Special noteheads
@subsection Special noteheads
@menu
* Input files::
-* Music expressions again::
+* A single music expression::
* Titles and headers::
* Paper and pages::
* Music layout::
@code{toplevel-score-handler} at toplevel. The default handler is
defined in the init file @file{scm/@/lily@/.scm}.
-The @code{\score} must begin with music, and may contain only
-one music block.
+The @code{\score} must begin with a music expression, and may
+contain only one music expression.
@item
A @code{\book} block logically combines multiple movements
-@c FIXME: --must-- delete/modify this before 2.8.0!!! -gp
-@node Music expressions again
-@section Music expressions again
+@node A single music expression
+@section A single music expression
-Should we include anything about this here?
+A @code{\score} must contain a single music expression. However,
+this music expression may be of any size. Recall that music
+expressions may be included inside other expressions to form
+larger expressions. All of these examples are single music
+expressions; note the curly braces @{ @} or angle brackets <<
+>> at the beginning and ending of the music.
+
+@example
+@{ c'4 c' c' c' @}
+@end example
+
+@lilypond[ragged-right,verbatim,quote]
+{
+ { c'4 c' c' c'}
+ { d'4 d' d' d'}
+}
+@end example
+
+@lilypond[ragged-right,verbatim,quote]
+<<
+ \new Staff { c'4 c' c' c' }
+ \new Staff { d'4 d' d' d' }
+>>
+@end example
+
+@example
+@{
+ \new GrandStaff <<
+ \new StaffGroup <<
+ \new Staff @{ \flute @}
+ \new Staff @{ \oboe @}
+ >>
+ \new StaffGroup <<
+ \new Staff @{ \violinI @}
+ \new Staff @{ \violinII @}
+ >>
+ >>
+@}
+@end example
@node Titles and headers