From 2a2a2b7f5ac95ce6deb10e555f0d6c70488febad Mon Sep 17 00:00:00 2001 From: gpercival Date: Fri, 1 Oct 2004 18:45:20 +0000 Subject: [PATCH] New sections for templates. --- ChangeLog | 2 + Documentation/user/examples.itely | 104 +++++++++++++++++------------- 2 files changed, 61 insertions(+), 45 deletions(-) diff --git a/ChangeLog b/ChangeLog index cac431d2f9..0444e74622 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * Documentation/user/notation.itely: more small fixes. + * Documentation/user/examples.itely: make new sections. + 2004-10-01 Werner Lemberg * tex/lilyponddefs.tex (\lilypondECencoding): New command to handle diff --git a/Documentation/user/examples.itely b/Documentation/user/examples.itely index 6cb601cfa5..2a8be09fcf 100644 --- a/Documentation/user/examples.itely +++ b/Documentation/user/examples.itely @@ -6,11 +6,14 @@ This section of the manual contains templates with the LilyPond score already set up for you. Just add notes, run LilyPond, and enjoy beautiful printed scores! +@c bad node name for ancient notation to avoid confict @menu * Suggestions for writing LilyPond files:: * Single staff:: * Piano templates:: * Small ensembles:: +* Vocal ensembles:: +* Ancient notation templates:: * Jazz combo:: * Other templates:: @end menu @@ -393,6 +396,57 @@ pedal = { @node Small ensembles @section Small ensembles +@subsection String quartet + +This template demonstrates a string quartet. It also uses a @code{\global} +section for time and key signatures. + +@lilypond[verbatim,raggedright] + +\version "2.3.16" +global = { + \time 4/4 + \key c \major +} +violinOne = \relative c''{ + \set Staff.instrument = "Violin 1 " + c2 d + e1 +} +violinTwo = \relative c''{ + \set Staff.instrument = "Violin 2 " + g2 g + g1 +} +viola = \relative c'{ + \set Staff.instrument = "Viola " + \clef alto + e2 d + c1 +} +cello = \relative c'{ + \set Staff.instrument = "Cello " + \clef bass + c2 g + c,1 +} +\score { + \new StaffGroup << + \new Staff << \global \violinOne >> + \new Staff << \global \violinTwo >> + \new Staff << \global \viola >> + \new Staff << \global \cello >> + >> + \paper { } + \midi { \tempo 4=60} +} + +@end lilypond + + +@node Vocal ensembles +@section Vocal ensembles + @subsection SATB vocal score Here is a standard four-part SATB vocal score. With larger ensembles, @@ -467,6 +521,11 @@ bassWords = \lyricmode { @end lilypond + +@c bad node name to avoid node name confict +@node Ancient notation templates +@section Ancient notation templates + @subsection Transcription of mensural music When transcribing mensural music, an incipit at the beginning of the @@ -691,52 +750,7 @@ bassusLyrics = \lyricmode { @end lilypond -@subsection String quartet - -This template demonstrates a string quartet. It also uses a @code{\global} -section for time and key signatures. - -@lilypond[verbatim,raggedright] - -\version "2.3.16" -global = { - \time 4/4 - \key c \major -} -violinOne = \relative c''{ - \set Staff.instrument = "Violin 1 " - c2 d - e1 -} -violinTwo = \relative c''{ - \set Staff.instrument = "Violin 2 " - g2 g - g1 -} -viola = \relative c'{ - \set Staff.instrument = "Viola " - \clef alto - e2 d - c1 -} -cello = \relative c'{ - \set Staff.instrument = "Cello " - \clef bass - c2 g - c,1 -} -\score { - \new StaffGroup << - \new Staff << \global \violinOne >> - \new Staff << \global \violinTwo >> - \new Staff << \global \viola >> - \new Staff << \global \cello >> - >> - \paper { } - \midi { \tempo 4=60} -} -@end lilypond @node Jazz combo @section Jazz combo -- 2.39.5