From cd3b0dd198f51721bf1840a1648e5aea57c384d8 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Wed, 8 Feb 2023 18:58:15 +0100 Subject: Create a new page for each score --- guix.scm | 2 +- index.html | 36 +++++++++--------------------------- par-toute-la-terre.html | 43 +++++++++++++++++++++++++++++++++++++++++++ par-toute-la-terre.ly | 31 +++++++++++++++++++++++++++++-- 4 files changed, 82 insertions(+), 30 deletions(-) create mode 100644 par-toute-la-terre.html diff --git a/guix.scm b/guix.scm index b63cf65..b8f5260 100644 --- a/guix.scm +++ b/guix.scm @@ -15,7 +15,7 @@ #:recursive? #t #:select? (lambda (file stat) - (or (string-suffix? "/index.html" file) + (or (string-suffix? ".html" file) (string-suffix? "/index.css" file) (string-suffix? ".ly" file)))) #$output) diff --git a/index.html b/index.html index 825472e..7c0135e 100644 --- a/index.html +++ b/index.html @@ -49,35 +49,17 @@ plusieurs fichiers PDF, ainsi qu’un rendu MIDI.

Liste des partitions

-

Par toute la terre

-
- - Livret du chœur - -
Livret du chœur
-
-
- - Conducteur - -
Conducteur
-
-
- - Livret instrumental - -
Livret instrumental
-

- C’est un chant de l’Emmanuel. Nous avons rajouté un contre-chant - instrumental qui peut être joué à la trompette, sur le - refrain. Le fichier source - est un fichier Lilypond. Un - rendu MIDI est également disponible. + Les éditions Copirate vous proposent pour l’instant :

+ diff --git a/par-toute-la-terre.html b/par-toute-la-terre.html new file mode 100644 index 0000000..84a8163 --- /dev/null +++ b/par-toute-la-terre.html @@ -0,0 +1,43 @@ + + + + + Par toute la terre + + + +

Par toute la terre

+

+ Les éditions Copirate sont fières de vous présenter une + partition du célèbre chant de l’Emmanuel, Par toute la + terre. Nous avons explicité l’accord de ré majeur dans la + deuxième moitié de la mesure 19 et 23 (dans le refrain), et nous + y avons introduit un contre-chant instrumental, sur le refrain + toujours, qui peut être joué à la trompette, ou autre instrument + soprano (ut ou si bémol). +

+

+
+ + Livret du chœur + +
Livret du chœur
+
+
+ + Conducteur + +
Conducteur
+
+
+ + Livret instrumental + +
Livret instrumental (ut et si bémol)
+
+ + + diff --git a/par-toute-la-terre.ly b/par-toute-la-terre.ly index b5ee1c8..520d8ee 100644 --- a/par-toute-la-terre.ly +++ b/par-toute-la-terre.ly @@ -234,13 +234,29 @@ voix_hommes = \new Staff \with { trompette = \new Staff \with { midiInstrument = "trumpet" - \RemoveAllEmptyStaves + instrumentName = "Instr. (Ut)" + shortInstrumentName = "I." + %\RemoveAllEmptyStaves } { \couplet_trompette \refrain_trompette } -choeur = \new ChoirStaff << +trompette_sib = \new Staff \with { + midiInstrument = "trumpet" + instrumentName = "Instr. (Sib)" + shortInstrumentName = "I." + %\RemoveAllEmptyStaves +} { + \transpose sib do' { + \couplet_trompette + \refrain_trompette + } +} + +choeur = \new ChoirStaff \with { + instrumentName = "Chœur" +} << \voix_femmes \new Lyrics = "paroles" \voix_hommes @@ -323,6 +339,17 @@ choeur = \new ChoirStaff << } } } + \score { + << + \compressMMRests { \trompette_sib } + >> + \layout { + \context { + \Staff + \RemoveEmptyStaves + } + } + } \paper { left-margin = 1.5\cm right-margin = 1.5\cm -- cgit v1.2.3