From: Trevor Daniels Date: Sat, 11 Sep 2010 07:59:00 +0000 (+0100) Subject: Doc: LM Templates: amend psalm template X-Git-Tag: release/2.13.33-1~1^2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e6d087913cab9db077ab14a3625781c993ebd6cb;p=lilypond.git Doc: LM Templates: amend psalm template - show use of asterisk correctly --- diff --git a/Documentation/snippets/anglican-psalm-template.ly b/Documentation/snippets/anglican-psalm-template.ly index ac0b797a2c..f39c27c40f 100644 --- a/Documentation/snippets/anglican-psalm-template.ly +++ b/Documentation/snippets/anglican-psalm-template.ly @@ -1,7 +1,7 @@ %% Do not edit this file; it is automatically %% generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.13.31" +\version "2.13.32" \header { lsrtags = "vocal-music, template" @@ -115,14 +115,17 @@ tick = \markup { } \null \line { - \hspace #2.5 2. Let us come before his presence \tick with + \hspace #2.5 8. Today if ye will hear his voice * } \line { - thanks \tick giving * and shew ourselves - \tick glad in \tick + \concat { \bold hard en } + \tick not your \tick hearts : as in the pro- } \line { - him with psalms. + vocation * and as in the \bold day of tempt- \tick + } + \line { + -ation \tick in the \tick wilderness. } } } diff --git a/Documentation/snippets/new/anglican-psalm-template.ly b/Documentation/snippets/new/anglican-psalm-template.ly new file mode 100644 index 0000000000..0b06f7fe44 --- /dev/null +++ b/Documentation/snippets/new/anglican-psalm-template.ly @@ -0,0 +1,128 @@ +\version "2.13.32" + +\header { + lsrtags = "vocal-music, template" + texidoc = " +This template shows one way of setting out an Anglican psalm chant. It +also shows how the verses may be added as stand-alone text under the +music. The two verses are coded in different styles to demonstrate +more possibilities. +" + doctitle = "Anglican psalm template" +} + +SopranoMusic = \relative g' { + g1 | c2 b | a1 | \bar "||" + a1 | d2 c | c b | c1 | \bar "||" +} + +AltoMusic = \relative c' { + e1 | g2 g | f1 | + f1 | f2 e | d d | e1 | +} + +TenorMusic = \relative a { + c1 | c2 c | c1 | + d1 | g,2 g | g g | g1 | +} + +BassMusic = \relative c { + c1 | e2 e | f1 | + d1 | b2 c | g' g | c,1 | +} + +global = { + \time 2/2 +} + +dot = \markup { + \raise #0.7 \musicglyph #"dots.dot" +} + +tick = \markup { + \raise #1 \fontsize #-5 \musicglyph #"scripts.rvarcomma" +} + +% Use markup to center the chant on the page +\markup { + \fill-line { + \score { % centered + << + \new ChoirStaff << + \new Staff << + \global + \clef "treble" + \new Voice = "Soprano" << + \voiceOne + \SopranoMusic + >> + \new Voice = "Alto" << + \voiceTwo + \AltoMusic + >> + >> + \new Staff << + \clef "bass" + \global + \new Voice = "Tenor" << + \voiceOne + \TenorMusic + >> + \new Voice = "Bass" << + \voiceTwo + \BassMusic + >> + >> + >> + >> + \layout { + \context { + \Score + \override SpacingSpanner + #'base-shortest-duration = #(ly:make-moment 1 2) + } + \context { + \Staff + \remove "Time_signature_engraver" + } + } + } % End score + } +} % End markup + +\markup { + \fill-line { + \column { + \left-align { + \null \null \null + \line { + \fontsize #5 O + \fontsize #3 come + let us \bold sing | unto \dot the | Lord : let + } + \line { + us heartily + \concat { re \bold joice } + in the | strength of | our + } + \line { + sal | vation. + } + \null + \line { + \hspace #2.5 8. Today if ye will hear his voice * + } + \line { + \concat { \bold hard en } + \tick not your \tick hearts : as in the pro- + } + \line { + vocation * and as in the \bold day of tempt- \tick + } + \line { + -ation \tick in the \tick wilderness. + } + } + } + } +}