summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--agnus.ly39
-rw-r--r--book.lytex12
-rw-r--r--sanctus.ly28
3 files changed, 79 insertions, 0 deletions
diff --git a/agnus.ly b/agnus.ly
new file mode 100644
index 0000000..a4a3b34
--- /dev/null
+++ b/agnus.ly
@@ -0,0 +1,39 @@
+<<
+\new Voice = "melody" {
+\key d \minor
+\relative c'' \repeat volta 3 {
+\partial 2 a a
+g g r a
+d d8 d c4 c
+bes2 a2
+
+f8[ e] d f e4 e
+f8[ e] d f g4 g
+a4. a8 g4 f
+e2 d
+}
+}
+
+\new Lyrics \lyricsto "melody" {
+A -- gnus |
+De -- i Qui |
+Tol -- lis pec -- ca -- ta |
+mun -- di
+
+<<
+{
+\set stanza = #"1.2."
+Mi -- se -- re -- re no -- bis
+Mi -- se -- re -- re no -- bis
+Mi -- se -- re -- re no -- bis
+}
+\new Lyrics {
+\set associatedVoice = "melody"
+\set stanza = #"3."
+Do -- na no -- bis pa -- cem
+Do -- na no -- bis pa -- cem
+Do -- na no -- bis pa -- cem
+}
+>>
+}
+>>
diff --git a/book.lytex b/book.lytex
new file mode 100644
index 0000000..b2a473f
--- /dev/null
+++ b/book.lytex
@@ -0,0 +1,12 @@
+\documentclass[a4paper]{article}
+\usepackage{fullpage}
+
+\begin{document}
+
+\section*{Agnus Dei}
+\lilypondfile{agnus.ly}
+
+\section*{Sanctus}
+\lilypondfile{sanctus.ly}
+
+\end{document}
diff --git a/sanctus.ly b/sanctus.ly
new file mode 100644
index 0000000..c78cb04
--- /dev/null
+++ b/sanctus.ly
@@ -0,0 +1,28 @@
+<<
+\new Voice = "melody" {
+\key d \major
+\relative c'' {
+ a a d cis
+ b8[ b] a g a2
+ fis4 fis b a
+ g8[ fis] e e d2
+
+ d4 d8 e fis4 fis8 a
+ b2 a
+ d4 a b2
+ g4( fis) e2
+}
+}
+
+\new Lyrics \lyricsto "melody" {
+ Sanc -- tus, Sanc -- tus,
+ Sanc -- tus Do -- mi -- nus,
+ Sanc -- tus, Sanc -- tus,
+ De -- us Sa -- ba -- oth.
+
+ Ple -- ni sunt cae -- li et
+ ter -- ra
+ glo -- ri -- a
+ tu -- a.
+}
+>>