Re: Voices and vocals

2012-05-23 Thread Thomas Morley
2012/5/23 John McWilliam jsmcwill...@gmail.com:
 Have you looked at my reply. I tried to post on gmane but am told my
 messages are not valid due to top posting - what is that? I just want
 people with experience to look at my snippet and give suggestions for how to
 solve my problem.

 Please respond,

 John McWilliam

Please stop sending me private mails with calls for lily-help.
I will ignore them, send them to the user-list.

I can't say anything to the problem that your mails are not accepted.
I never had it, but I cc the list, perhaps someone else can help you
with it.

2012/5/22 jsmcwilliam jsmcwill...@gmail.com:
 Yes! it compiles but why must I include S1 in the code in order to avoid a
 collision between d1 e1. It also means I get an empty bar after the lyrics
 which is aesthetically disturbing.

Did you try my suggestion? I didn't notice any collision nor empty bars.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Voices and vocals

2012-05-21 Thread John McWilliam
Snippet:

 

\relative c' {

  \time 4/4

  r2 r8

   

\new Voice = melody {

\autoBeamOff

\partial 4. c'4.^\markup {Sjung.}

 

% Rehersal mark A

\mark \default 

\slurDown

\repeat volta 2 {

a4 a a8 a4 g8~ |g4. g8~ g4 r8 g8 |g4 g8 g~ g g g4 |f2. r4

\times 2/3 {r4 c f} 

\times 2/3 {a d a} |e4 e8 d~ d c bes4 |e4 e8 d~ d c bes4

}

\alternative {

{a2 r8 c'4.}

{a,4 r2 r4 \bar ||}

}

}

\new Lyrics \lyricsto melody {

La, La, La, La, La, La, La, La, La, La, La, La, La, La, La,
La, La, La,

La, La, La, La, La, La, La, La, La, La, La, La, La, La.

}

 

\autoBeamOn \oneVoice

s1

% Rehersal mark A

\mark \default

\Bkey 

d1\mf (e f g2) r4 d4 |  



\bar |.

} %end relative

 

I have a problem with the above snippet from part of a longer piece 

of music (the clarinet part):

The snippet seems to compile, however, without any errors but no music
appears 

after the lyrics section. By chance I added S1 sfter the lyrics section to
get 

the present snippet - this produced an extra empty bar following the lyrics 

section. In desperation I decided to accept this and copied the snippet back


into the main piece, however, again, no music after the lyrics section and I


am at a loss to find an explanation. Any help would be most gratefully 

recieved. John McWilliam

 

Ribevägen 14A

217 46 Malmö

Sverige

Tel: +46-733-127711

 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Voices and vocals

2012-05-21 Thread John McWilliam
 

\relative c' {

  \time 4/4

  r2 r8

   

\new Voice = melody {

\autoBeamOff

\partial 4. c'4.^\markup {Sjung.}

 

% Rehersal mark A

\mark \default 

\slurDown

\repeat volta 2 {

a4 a a8 a4 g8~ |g4. g8~ g4 r8 g8 |g4 g8 g~ g g g4 |f2. r4

\times 2/3 {r4 c f} 

\times 2/3 {a d a} |e4 e8 d~ d c bes4 |e4 e8 d~ d c bes4

}

\alternative {

{a2 r8 c'4.}

{a,4 r2 r4 \bar ||}

}

}

\new Lyrics \lyricsto melody {

La, La, La, La, La, La, La, La, La, La, La, La, La, La, La,
La, La, La,

La, La, La, La, La, La, La, La, La, La, La, La, La, La.

}

 

\autoBeamOn \oneVoice

s1

% Rehersal mark A

\mark \default

\Bkey 

d1\mf (e f g2) r4 d4 |  



\bar |.

} %end relative

 

I have a problem with the above snippet from part of a longer piece 

of music (the clarinet part):

The snippet seems to compile without any errors but no music appears 

after the lyrics section. By chance I added S1 efter the lyrics section to
get 

the present snippet - this produced an extra empty bar following the lyrics 

section. In desperation I decided to accept this and copied the snippet back


into the main piece, however, again, no music after the lyrics section and I


am at a loss to find an explanation. Any help would be most gratefully 

recieved. John McWilliam

 

Ribevägen 14A

217 46 Malmö

Sverige

Tel: +46-733-127711

 

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Voices and vocals

2012-05-21 Thread Thomas Morley
2012/5/21 John McWilliam jsmcwill...@gmail.com:
(...)
 The snippet seems to compile without any errors

Well, it returns:

atest-14.ly:757:16: error: unknown escaped string: `\Bkey'

\Bkey
atest-14.ly:757:16: error: syntax error, unexpected STRING

\Bkey
atest-14.ly:729:8: error: errors found, ignoring music expression


error: failed files: atest-14.ly

and after commenting \Bkey :

atest-14.ly:739:25: warning: trying to use \partial after the start of a piece

 \partial 4. c'4.^\markup {Sjung.}


That's tedious. Please make sure to post a compiling file/snippet
containing the used version.


However, you could try:

\version 2.14.2

\score {


\new Staff

\relative c' {
\time 4/4
r2 r8
 
 \new Voice = melody {
 \autoBeamOff
 c'4.^\markup {Sjung.}
% Rehersal mark A
 \mark \default
 \repeat volta 2 {
 a4 a a8 a4 g8~ |g4. g8~ g4 r8 g8 |g4 g8 g~ g g g4 |f2. 
r4
 \times 2/3 {r4 c f}
 \times 2/3 {a d a} |e4 e8 d~ d c bes4 |e4 e8 d~ d c 
bes4
 }
 \alternative {
 {a2 r8 c'4.}
 {a,4 r2 r4 \bar ||}
 }
 }
 
\autoBeamOn \oneVoice
% Rehersal mark B
\mark \default
%\Bkey
d1\mf (e f g2) r4 d4 |
\bar |.
} %end relative

\new Lyrics \lyricsto melody {
La, La, La, La, La, La, La, La, La, La, La, La, La, La, La, La, 
La, La
La, La, La, La, La, La, La, La, La, La, La, La, La, La.
}

}

-Harm

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user