Hello,
I did an exercise for myself (invented!)
Using lyrics, piano + voice.
Lyrics do align correctly.
In this one, I separate things using variables.
It make things easier to edit and expand.
Hope it can help.
(Sorry if it is partly in French, my language...)
Le 25.02.21 à 00:29, John Helly a écrit :
Aloha.
I'm working on transcribing the sheet music for Wooden Ships (Crosby, Stills, Kantner)
into LP as a learning exercise for myself. I'm self-taught in reading music so pls
forgive blunders (but also pls point them out).
I'm having trouble aligning the lyrics with the beaming structure of the published sheet
music. The only method that seems to allow me to get the desired alignment is to
connect the syllables with underscores and that seems like a big kluge.
Maybe I'm missing some option to allow lyrics to align with beamed and slurred notes
within a beam and/or slur?
My understanding is that the default behavior is to align syllables on the first note of
the beam rather than on the notes within a beam. Not sure if that's correct.
Mahalo.
J.
--
John Helly, University of California, San Diego / San Diego Supercomputer
Center / Scripps Institution of Oceanography / 760 840 8660 mobile
/http://www.sdsc.edu/~hellyj
ORCID ID: orcid.org/0000-0002-3779-0603
--
Silvain Dupertuis
Route de Lausanne 335
1293 Bellevue (Switzerland)
tél. +41-(0)22-774.20.67
portable +41-(0)79-604.87.52
web: silvain-dupertuis.org <http://perso.silvain-dupertuis.org>
\version "2.20.0"
global = {
\key g \major
}
% ===================================
% ========== Instruments ============
% ===================================
instrumentIntro = #"violin"
instrumentIntroName = #"Violon"
instrumentMelodie = #"cello"
instrumentFinale = #"flute"
% =================================
% ==== musical sequences ====
% =================================
melody = \relative c'' {
\global
% \override Staff.KeySignature.break-visibility = ##(#f #f #f)
g4 b d b a2 a g1
}
text = \lyricmode {
Mon a -- mi Pier -- rot est là
}
chordsline = \chordmode {
\set chordChanges = ##t
g2 g/b c/d d:7 g1
}
upper = \relative c'' {
\global
<<
\new Voice { \voiceOne b4 g g fis8 g c2 a b1 }
\new Voice { \voiceTwo g2 d c4 e d c d1 }
>>
}
lower = \relative c {
\clef bass
\global
<<
\new Voice { \voiceOne g'2 g e 4 g g4 fis g1 }
\new Voice { \voiceTwo g,2 b d d g,1 }
>>
}
% === Final part, piano alone ====
upperEnd = \relative c'' {
\global
<<
\new Voice { \voiceOne c2^"Flute" b4 a g1 }
\new Voice { \voiceTwo g2 d4 c b1 }
>>
}
lowerEnd = \relative c {
\global
\clef bass
% \global
<<
\new Voice { \voiceOne g'2 g4 fis d1 }
\new Voice { \voiceTwo c2 d g,1 }
>>
}
% =========================================
% ==== Staves and instruments ====
% =========================================
musicMain = {
<<
\new Voice = "melody" {
\set Staff.midiInstrument = \instrumentMelodie
\autoBeamOff \melody
}
\new Lyrics \lyricsto melody \text
\new ChordNames {
\chordsline
% \chordmode {g2 g/b c/d d:7 g1 }
}
\new PianoStaff
<<
\new Staff = "upper" \upper
\new Staff = "lower" \lower
>>
>>
}
% ===================================
% === Scores - PDF and Midi outputs
% ===================================
\score {
\musicMain
\midi {
\tempo 4 = 92
}
}