Ô Nuit (Jean-Philippe Rameau)/Répétition : Différence entre versions

De Wicri Musique
(Version à 2 voix + piano)
(Version à 2 voix + piano)
Ligne 32 : Ligne 32 :
 
   ees4 aes4. g16 f16
 
   ees4 aes4. g16 f16
 
   g4 f2
 
   g4 f2
   ees4
+
   ees2 r4
  
 
}}
 
}}
Ligne 79 : Ligne 79 :
 
   ees4 ^\> c4 d4
 
   ees4 ^\> c4 d4
 
   ees2 ^\! d4
 
   ees2 ^\! d4
   ees4 r2
+
   ees2 r4
 
}}
 
}}
 
\addlyrics {  
 
\addlyrics {  

Version du 31 août 2021 à 15:48

Version à 2 voix + piano

Page 1Page 2

Transposition

cat <<... >transpoUnTon.lex

%%
a        printf ("g");
b        printf ("a");
bes      printf ("aes");
c        printf ("bes");
d        printf ("c");
e        printf ("d");
f        printf ("ees");
g        printf ("f");
"\\\\"[^ \\n]+  ECHO;
"\\^"[^ \\n]+  ECHO;
%%
main()
{
  yylex();
}
...
lex transpoUnTon.lex

gcc lex.yy.c -ll -o transpoUnTon