forked from threedaymonk/lilypond-shamisen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.ly
58 lines (42 loc) · 1.11 KB
/
example.ly
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
51
52
53
54
55
56
57
58
\version "2.18.2"
\include "shamisen.ly"
% Make the staff bigger
#(set-global-staff-size 32)
% Use s/f for sharp/flat
\language "english"
\paper{
#(set-paper-size "a4")
#(define fonts
(set-global-fonts
#:roman "IPAexGothic" ; this must be an available font with Japanese characters
#:factor (/ staff-height pt 20) ; unnecessary if the staff size is default
))
}
% If this font is not available, replace with one that is
% shamisen-markup-font = #'(font-name . "IPAexGothic")
\header {
title = "例"
subtitle = "Example"
meter = "2/4 二上り"
composer = "百合ヶ池"
tagline = "Typeset with LilyPond and shamisen.ly"
}
\score {
\new TabStaff {
\set TabStaff.stringTunings = #niagariTuning
\shamisenNotation
\time 2/4
c'8. bf16 g bf \uchi c'8
g8. f16^\third g bf \uchi c'8
g8. f16 g8. ef16
f8.^\third g16
\trtr { c'16\2^\third bf \hajiki g \hajiki g }
c'8 c' \sukui
\trtr { f'16 ef' \hajiki c' \hajiki bf }
g16 bf \uchi c'8 \keshi r4
f'8^\third( g') f' f' \sukui
g8. f16 g8. \oshi <c g c'>16
<c g c'>2\fermata
\bar "|."
}
}