Le dimanche 24 juillet 2016 à 09:33 +0000, Raphael Thoene a écrit : > > > > I'm not top posting > Hi, > > as a newbie, I probably do something very „simple“ wrong but my code > works > until the lower voice in the > left hand. Then I receive the following error message: > > Starting lilypond 2.18.2 [Tylam-Susato-c-1500-c-1564-Pavane.ly]... > Processing > `/var/folders/6q/lvl_dtbx73b7605lwv57cd440000gn/T/frescobaldi- > irqWsH/tmpIuPrL5/Tylam-Susato-c-1500-c-1564-Pavane.ly' > Parsing... > /var/folders/6q/lvl_dtbx73b7605lwv57cd440000gn/T/frescobaldi-irqWsH > /tmpIuPrL5/Tylam-Susato-c- > 1500-c-1564-Pavane.ly:110:1: error: syntax error, unexpected \layout > > \layout {} > /var/folders/6q/lvl_dtbx73b7605lwv57cd440000gn/T/frescobaldi-irqWsH > /tmpIuPrL5/Tylam-Susato-c- > 1500-c-1564-Pavane.ly:113:3: error: syntax error, unexpected end of > input > } > fatal error: failed files: > "/var/folders/6q/lvl_dtbx73b7605lwv57cd440000gn > /T/frescobaldi- > irqWsH/tmpIuPrL5/Tylam-Susato-c-1500-c-1564-Pavane.ly" > Exited with return code 1. > > > What is wrong in my code? Curly Braces wrong set? > Thanks, > Raphael. > > P.S. By default, it is apparently impossible for me to send an email > to this list via my regular email > program, although I am receiving all posts (excluding mine, of > course), > i.e. my email address has been > validated. > > \version "2.18.2" > > > \header{ > > title = "Pavane" > > subtitle = "" > composer = "Tylman Susato" > enteredby = "RT" > } > > \score { > > % Relatives C'' für rechte Hand > \relative c'' > > % Erzeugen einer Staff Group > \new StaffGroup << > % neues System > \new Staff << > % Oberstimme > \new voice = "first" > { > \voiceOne > \clef treble > \time 2/2 > c2. b4 % m1 > a c2 b8 a % m2 > b4. a8 b c b a % m3 > b2. b4 % m4 > a4. g8 a b a4~ % m5 > a c b a % > m6 > gis4. fis8 gis a gis fis % m7 > gis2. a8 b % m8 > c2. b4 % m9 > a4 c2 b8 a % m10 > b4. a8 b c b a % m11 > b c d c b4 a % m12 > gis8 a b gis a4 fis4 % m13 > gis8 e a4~a8 gis16 fis a8 [gis] % m14 > a2. a4 % > m15 > a2 a2 % m16 > } > > % Oberstimme > \new Voice = "second" > { > \voiceTwo > e2. d4 % m1 > c d e fis % > m2 > g1~ % > m3 > g2. g4 > % m4 > e1 % > m5 > f4 e g d % m6 > e1~ % > m7 > e~ % > m8 > e2. d4 % m9 > c d e fis % > m10 > g1~ % > m11 > g2~g8 f e d % m12 > e2 a, % m13 > e'4 d e2 % > m14 > cis2. cis4 % m15 > cis2 cis % > m16 > } > >> > > % Relatives c für linke Hand > \relative c > \new Staff << > > > \new Voice = "first" > { > \clef bass > \voiceOne > a2. b4 % m1 > c a c2 % m2 > d4. c8 d e d c % m3 > d2. d4 % m4 > c4. b8 c d c b % m5 > c2 d4 a % m6 > b4. a8 b c b a % m7 > b2. e4 % m8 > a,2. b4 % m9 > c4 a4 c2 % m10 > d4. c8 d e d4~ % m11 > d2. c4 % m12 > b4 e c d % m13 > b a b2 % m14 > \oneVoice > a2. a4 % m15 > a2 a % m16 > } > > \new Voice = "second" > { > \voiceTwo > > > } > > > > > > > > > > > > > \layout {} > \midi { > \tempo 2 = 60 > } > _______________________________________________ > lilypond-user mailing list > lilypond-user@gnu.org > https://lists.gnu.org/mailman/listinfo/lilypond-user
Hi Two blobs are unclosed: The "StaffGroup <<" misses the ">>" end (before \layout) and the "\score {" group has no closing brace at the end of your input. Regards, Jean _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user