summaryrefslogtreecommitdiff
path: root/Hedwigs_Theme/Hedwigs_Theme.ly
blob: 3c845af1dd7ff10fb547e4cd3b9a7307eb8b9b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
\include "deutsch.ly"
include(stimmen.pre)
include(artikulation.pre)

\pointAndClickOff

% #(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
% #(set-default-paper-size "kindle")

\paper {
  top-margin = 5
  print-all-headers = ##t
}
\header {
  title = ##f
  composer = ##f
  tagline = ##f
}
\score {
  \header {
    title = "Hedwig's theme"
    composer = "John Williams"
    tagline = ##f
  }
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \transposition b
      \new Voice = eins    << \global \artikulation \einsMelodie >>
    >>
    \new Staff <<
      \transposition b
      \new Voice = zwei    << \global \artikulation \zweiMelodie >>
    >>
    \new Staff <<
      \transposition b
      \new Voice = drei    << \global \artikulation \dreiMelodie >>
    >>
    \new Staff <<
      \new Voice = vier    \transpose d c << \global \artikulation \vierMelodie >>
    >>
  >>
  \layout {
    indent = #0
  }
  \midi { \context {
    \Score
    tempoWholesPerMinute = #(ly:make-moment 75 2)
  } }
}