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

De Wicri Musique
(Version à 2 voix + piano)
(Version à 2 voix + piano)
Ligne 51 : Ligne 51 :
 
   shortInstrumentName = #"A"
 
   shortInstrumentName = #"A"
 
   } {
 
   } {
   \relative c' {   
+
   \relative c'' {   
 
   \time 3/4 \key ees \major  
 
   \time 3/4 \key ees \major  
 
  g4 \pp f2
 
  g4 \pp f2

Version du 31 août 2021 à 15:13

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