Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1177)

Delta Between Two Patch Sets: Documentation/snippets/vertically-centered-common-lyrics.ly

Issue 6635050: Make arguments like Context.GrobName accessible as symbol lists (Closed) Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Left Patch Set: unquote \accidentalStyle parameters, make and use symbol-list-or-symbol?, some amendments Created 12 years, 5 months ago
Right Patch Set: Allow \override Accidental.color = #red (dot between grob and property) Created 12 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 %% DO NOT EDIT this file manually; it is automatically 1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it 2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , 3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py 4 %% and then run scripts/auxiliar/makelsr.py
5 %% 5 %%
6 %% This file is in the public domain. 6 %% This file is in the public domain.
7 \version "2.16.0" 7 \version "2.17.6"
8 8
9 \header { 9 \header {
10 lsrtags = "vocal-music" 10 lsrtags = "vocal-music"
11 11
12 texidoc = " 12 texidoc = "
13 In a vocal piece where there are several (two,four or more) lines of 13 In a vocal piece where there are several (two,four or more) lines of
14 lyrics, and common lyrics for all voices at some point, these common 14 lyrics, and common lyrics for all voices at some point, these common
15 lyrics may be vertically centered regardingly, as shown in the 15 lyrics may be vertically centered regardingly, as shown in the
16 following example: 16 following example:
17 17
18 " 18 "
19 doctitle = "Vertically centered common lyrics" 19 doctitle = "Vertically centered common lyrics"
20 } % begin verbatim 20 } % begin verbatim
21 21
22 \include "english.ly" 22 \include "english.ly"
23 leftbrace = \markup { \override #'(font-encoding . fetaBraces) \lookup #"brace24 0" } 23 leftbrace = \markup { \override #'(font-encoding . fetaBraces) \lookup #"brace24 0" }
24 rightbrace = \markup { \rotate #180 \leftbrace } 24 rightbrace = \markup { \rotate #180 \leftbrace }
25 25
26 dropLyrics = 26 dropLyrics =
27 { 27 {
28 \override LyricText #'extra-offset = #'(0 . -5) 28 \override LyricText.extra-offset = #'(0 . -5)
29 \override LyricHyphen #'extra-offset = #'(0 . -5) 29 \override LyricHyphen.extra-offset = #'(0 . -5)
30 \override LyricExtender #'extra-offset = #'(0 . -5) 30 \override LyricExtender.extra-offset = #'(0 . -5)
31 } 31 }
32 32
33 raiseLyrics = 33 raiseLyrics =
34 { 34 {
35 \revert LyricText #'extra-offset 35 \revert LyricText.extra-offset
36 \revert LyricHyphen #'extra-offset 36 \revert LyricHyphen.extra-offset
37 \revert LyricExtender #'extra-offset 37 \revert LyricExtender.extra-offset
38 } 38 }
39 39
40 skipFour = \repeat unfold 4 { \skip 8 } 40 skipFour = \repeat unfold 4 { \skip 8 }
41 41
42 lyricsA = \lyricmode { The first verse has \dropLyrics the com -- mon 42 lyricsA = \lyricmode { The first verse has \dropLyrics the com -- mon
43 __ words \raiseLyrics used in all four. } 43 __ words \raiseLyrics used in all four. }
44 lyricsB = \lyricmode { In stan -- za two, \skipFour al -- so ap -- pear. } 44 lyricsB = \lyricmode { In stan -- za two, \skipFour al -- so ap -- pear. }
45 lyricsC = \lyricmode { By the third verse, \skipFour are get -- ting dull. } 45 lyricsC = \lyricmode { By the third verse, \skipFour are get -- ting dull. }
46 lyricsD = \lyricmode { Last stan -- za, and \skipFour get used once more. } 46 lyricsD = \lyricmode { Last stan -- za, and \skipFour get used once more. }
47 47
48 melody = \relative c' { c4 d e f g f e8( e f) d4 c e d c } 48 melody = \relative c' { c4 d e f g f e8( e f) d4 c e d c }
49 49
50 \score 50 \score
51 { 51 {
52 << 52 <<
53 \new Voice = m \melody 53 \new Voice = m \melody
54 \new Lyrics \lyricsto m \lyricsA 54 \new Lyrics \lyricsto m \lyricsA
55 \new Lyrics \lyricsto m \lyricsB 55 \new Lyrics \lyricsto m \lyricsB
56 \new Lyrics \lyricsto m \lyricsC 56 \new Lyrics \lyricsto m \lyricsC
57 \new Lyrics \lyricsto m \lyricsD 57 \new Lyrics \lyricsto m \lyricsD
58 >> 58 >>
59 } 59 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b