[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Paroles et alignBelowContext
From: |
Valentin Villenave |
Subject: |
Re: Paroles et alignBelowContext |
Date: |
Wed, 27 Apr 2011 17:55:55 +0200 |
2011/4/27 address@hidden <address@hidden>:
> Dans l'exemple ci-dessous, les paroles sont toutes décalées vers le bas du
> système, mais je veux qu'elles soient mises en dessous du contexte identifié
> avec alignBelowContext. Des idées ?
Bonjour,
pourquoi veux-tu mettre le contexte Lyrics *dans* le contexte Staff ?
Voici ton exemple (avec de l'indentation ! ;-)
\score {
<<
\new Staff \with {
instrumentName = #"Vn.2"
} {
\hideNotes c'2 \unHideNotes
<<
\new Voice = "voicea" {
c'2^\ppp\> \glissando s2 s2
s4. \hideNotes c'8\! \unHideNotes
}
{
s2 \hideNotes c'2 c'2 c'2 \unHideNotes
}
>>
\bar "|"
}
\new Lyrics \with {
alignBelowContext = #"voicea"
} \lyricsto "voicea" { "shh" }
\new Staff \with {
instrumentName = #"Cl.1"
} {
\hideNotes c'2 c'2 c'2 \unHideNotes
<<
\new Voice = "voiceb" {
c'2^\ppp\> \glissando
s4. \hideNotes c'8\! \unHideNotes
}
{
s2 \hideNotes c'2 \unHideNotes
}
>>
\bar "|"
}
\new Lyrics \with {
alignBelowContext = #"voiceb"
} \lyricsto "voiceb" { "shh" }
>>
}
Valentin.