blob: 1fd2703869477aecdf859fd5941d1433410ee9fc (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.di.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.19.2"
\header {
= "text, vocal-music"
= "
By default, lyrics syllables that start a melisma are left aligned on
their note. The alignment can be altered using the
@code{lyricMelismaAlignment} property.
"
= "Aligning syllables with melisma"
} % begin verbatim
\score {
<<
\new Staff {
\relative c''
\new Voice = "vocal" {
c d~^\markup default d e
c d~^\markup "right aligned" d e
c d~^\markup "center aligned" d e
c d~^\markup "reset to default" d e
}
}
\new Lyrics \lyricsto "vocal" {
word word word
\set lyricMelismaAlignment = #RIGHT
word word word
\set lyricMelismaAlignment = #CENTER
word word word
\unset lyricMelismaAlignment
word word word
}
>>
}
|