summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/third/lilypond/t-lilypond.tex
blob: 2f4d7b936b5c79309a0b69fa402325bff65d04f7 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
%D \module
%D    [          file=t-lilypond,
%D            version=2009.05.27,
%D              title=\CONTEXT\ User Modules,
%D           subtitle=LilyPond Connections (Music Typesetting),
%D             author={Christopher Creutzig, Henning Hraban Ramm, Mojca Miklavec, Wolfgang Schuster},
%D               date=\currentdate,
%D          copyright=the authors]
%C
%C This module is licensed under the GNU GPL.

%D This module serves to include LilyPond music directly in the
%D \CONTEXT\ source, just as \METAPOST\ code can be.
%D
%D It is supposed to work only with LilyPond's stable version 2.12 and \CONTEXT\ MkIV i.\,e. \LUATEX.
%D
%D {\bfa Complete list of options:}
%D
%D \starttabulate[|l|l|l|]
%D    \NC option\NC default\NC comment\NC\NR
%D    \HL
%D    \NC staffsize\NC 14\NC in pt    \NC\NR
%D    \NC indent\NC 0pt\NC first line indent    \NC\NR
%D    \NC time\NC yes\NC count time? (i.e. show time signature, set bars, split line)    \NC\NR
%D    \NC clef\NC yes\NC show clef?    \NC\NR
%D    \NC linewidth\NC \\localhsize\NC    \NC\NR
%D    \NC betweensystemspace\NC 54pt\NC space between systems    \NC\NR
%D    \NC height\NC \\textheight\NC    \NR
%D    \NC align\NC ?\NC default depends on fragment=...    \NC\NR
%D    \NC fragment\NC no\NC whole staff line or only snippet?   \NC\NR
%D    \NC barnumbers\NC no\NC show numbers of measures?    \NC\NR
%D    \NC showempty\NC no\NC drop empty staves?    \NC\NR
%D    \NC seriffont\NC "TeX Gyre Schola"\NC font for e.g. lyrics    \NC\NR
%D    \NC sansfont\NC "LMSans10"\NC font for e.g. chords    \NC\NR
%D    \NC monofont\NC "LMTypewriter10" \NC normally not used    \NC\NR
%D    \NC tmpdir\NC ./lilytemp \NC directory for temporary files \NC\NR
%D    \NC imgdir\NC ./lilypdfs \NC directory for image files (note PDFs) \NC\NR
%D \stoptabulate
%D
%D {\bfa Todo list}
%D
%D \startitemize
%D \item Proper support for multipage results.
%D \item Set LilyPond page size to remaining page space.
%D \item Place instrument names in margin.
%D \stopitemize
%D
%D {\bfa Commented Source}
%D
%D As usual, we use a prefix for buffers, \type{\getparameters} etc.:

\writestatus{loading}{LilyPond module}

\startmodule[lilypond]

\unprotect

\definesystemvariable {lily}

%D Define the text snippets to be placed around fragments.
%D Since LilyPond uses similar syntax to TeX, we must do some catcode fiddling.

\bgroup

\catcode`\/=\@@escape
/catcode`/\=/@@other
/catcode`/#=/@@other
/catcode`/<=/@@begingroup
/catcode`/>=/@@endgroup
/catcode`/{=/@@other
/catcode`/}=/@@other
/catcode`/%=/@@other
/catcode`/-=/@@letter

/gdef/lily!fragmentprefix
	</string^^J
	 /string^^J
	 {/string^^J
	 % ly snippet contents follows:/string^^J
	>

/gdef/lily!fragmentsuffix
	</string^^J
	 % end ly snippet/string^^J
	 }/string^^J
	>

/gdef/lily!prefix
	</string^^J
	 /string^^J
	 #(ly:set-option (quote no-point-and-click))/string^^J
	 #(ly:set-option (quote delete-intermediate-files))/string^^J
	 /string^^J
	 \version "2.12.0"/string^^J
	 #(define version-seen? #t)/string^^J
	 \layout {/string^^J
	 /iflily!showempty/else
	   % drop empty staves/string^^J
	   \context { \RemoveEmptyStaffContext } % MUST come first/string^^J
	   \context { \Score \override VerticalAxisGroup #'remove-first = ##t }/string^^J
	 /fi
	 /string^^J
	 /unless/iflily!time
	   % switch off time signature (i.e. only one line, no bars)/string^^J
	   ragged-last = ##t/string^^J
	   \context { \Score timing = ##f }/string^^J
	   \context { \Staff \remove "Time_signature_engraver" }/string^^J
	   /string^^J
	 /fi
	 /unless/iflily!barnumbers
	   % switch off bar numbers/string^^J
	   \context { \Score \remove "Bar_number_engraver" }/string^^J
	 /fi
	 /string^^J
	 /unless/iflily!clef
	   % switch off clef sign/string^^J
	   \context { \Staff \remove "Clef_engraver" }/string^^J
	 /fi
	 /string^^J
	 #(define fonts
	   (make-pango-font-tree
	   /@@lilyseriffont/space
	   /@@lilysansfont/space
	   /@@lilymonofont/space
	 (/letterslash/space/@@lilystaffsize/space 20)))/string^^J
	 /string^^J
	 }/string^^J
	 \paper {/string^^J
	   #(define dump-extents #t)/string^^J
	   ragged-right = /iflily!align ##f/else ##t/fi/string^^J
	   indent = /withoutpt/the/lily!indent\pt/string^^J
	   line-width = /withoutpt/the/lily!linewidth\pt/string^^J
	   vsize = /withoutpt/the/lily!vsize\pt/string^^J
	   printpagenumber = ##f/string^^J
	   oddFooterMarkup=##f/string^^J
	   oddHeaderMarkup=##f/string^^J
	   bookTitleMarkup = ##f/string^^J
	   scoreTitleMarkup = ##f/string^^J
	   ragged-bottom=##t/string^^J
	   ragged-last-bottom=##t/string^^J
	   between-system-padding = #0/string^^J
	   between-system-space = /withoutpt/the/lily!betweensystemspace\pt/string^^J
	 }/string^^J
	>

/egroup

\newdimen\lily!linewidth
\newdimen\lily!vsize
\newdimen\lily!indent
\newdimen\lily!betweensystemspace
\newif\iflily!showempty
\newif\iflily!align
\newif\iflily!clef
\newif\iflily!time
\newif\iflily!barnumbers

\newcounter\lily!figures

%D Again, as usual, there is a \type{\setuplilypond} command
%D that accepts the same parameters as \type{\lilypond} and
%D \type{\startlilypond} do in their optional argument.

\def\setuplilypond
	{\bgroup
	 \catcode`\#=\@@other
	 \dosingleempty\dosetuplilypond}

\def\dosetuplilypond[#1]%
	{\egroup
	 \getparameters[\??lily][#1]}

%D We set the following defaults:

\setuplilypond
	[staffsize=20,
	 indent=0pt,
	 betweensystemspace=54pt,
	 time=\v!yes,
	 clef=\v!yes,
	 align=?,	% default depends on fragment=...
	 fragment=\v!no,
	 barnumbers=\v!no,
	 showempty=\v!no,
	 seriffont="TeX Gyre Schola", % LilyPond default font
	 sansfont="LMSans10",
	 monofont="LMTypewriter10",
	 tmpdir={./lilytemp},
	 imgdir={./lilypdfs}]
%D
%D If you want to know which fonts of your system LilyPond can see
%D with which names, try \type{lilypond -dshow-available-fonts any}.
%D (The 3rd parameter is necessary, but can be anything.)
%D There are a lot of restrictions, e.g. no fonts from the \TeX\ tree (don't know why),
%D only one face per font file etc.
%D
%D \type{\startlilypond} is a multistage implementation, because
%D end-of-line characters must be treated specially in the
%D \type{\startlilypond}\textellipsis\type{\stoplilypond} range.
%D

\def\tmpdir{\@@lilytmpdir} % for intermediate files
\def\imgdir{\@@lilyimgdir} % for music PDFs

%D
%D Check if temporary and image directories exist and create them if not:
%D
\startluacode	
	if not lfs.isdir("\tmpdir") then
		logs.report("LilyPond Warn ", "Temporary directory not found, trying to make '\tmpdir'")
		lfs.mkdir("\tmpdir")
	end
	if not lfs.isdir("\imgdir") then
		logs.report("LilyPond Warn ", "Image directory not found, trying to make '\imgdir'")
		lfs.mkdir("\imgdir")
	end
\stopluacode


\def\startlilypond
	{\bgroup
	 \catcode`\#=\@@other
	 \dosingleempty\dostartlilypond}

\def\dostartlilypond[#1]%
	{\obeylines
	 \dodostartlilypond[#1]}

\long\def\dodostartlilypond[#1]#2\stoplilypond
	{\egroup
	 \bgroup
	 %D The default of the \type{linewidth} parameter is the local \type{\hsize}.
	 \setlocalhsize
	 \getparameters[\??lily][linewidth=\the\localhsize,height=\the\textheight,#1]%
	 \lily!linewidth\@@lilylinewidth
	 \lily!vsize\@@lilyheight
	 \lily!indent\@@lilyindent
	 \lily!betweensystemspace\@@lilybetweensystemspace
	 %D The default of \type{align} depends on whether we typeset a fragment:
	 \doifelse\@@lilyalign\v!yes\lily!aligntrue\lily!alignfalse
	 \doif\@@lilyfragment\v!no{\doif\@@lilyalign{?}\lily!aligntrue}%
	 \doifelse\@@lilytime\v!yes\lily!timetrue\lily!timefalse
	 \doifelse\@@lilybarnumbers\v!yes\lily!barnumberstrue\lily!barnumbersfalse
	 \doifelse\@@lilyshowempty\v!yes\lily!showemptytrue\lily!showemptyfalse
	 \doifelse\@@lilyclef\v!yes\lily!cleftrue\lily!cleffalse
%D
%D We are using a counter to keep the different LilyPond pieces
%D separate.	This allows to typeset them only once, during the
%D first run.
%D
%D TODO: This won't work any longer once we pass the remaining
%D vertical space to LilyPond.
%D
	 \doglobal\increment\lily!figures
	 \edef\lily!filename{\bufferprefix lilypond-\lily!figures}%
	 \edef\lily!tmpfilename{\tmpdir/\bufferprefix lilypond-\lily!figures}%
	 \edef\lily!img{\imgdir/\lily!filename.pdf}
	 \def\obeyedlines{\string^^J}%
	 \convertargument#2\to\ascii
	 \startexpanded
	   \noexpand\setbuffer[lilypond-\lily!figures]%
	   \lily!prefix
	   \letterhash(set-global-staff-size \getvalue{\??lily staffsize})\string^^J%
	   \ifdefined\@@lilyfragment\lily!fragmentprefix\fi
	   %% TODO: Option "packed"
	   \ascii
	   \ifdefined\@@lilyfragment\lily!fragmentsuffix\fi
	   \noexpand\endbuffer
	 \stopexpanded
%D
%D Generating a PDF directly always creates a whole page, so we generate EPS first.
%D
	 \def\LP{mtxrun --ifchanged="\lily!tmpfilename.tmp" --exec bin:lilypond -dbackend=eps -dno-gs-load-fonts -dinclude-eps-fonts -ddelete-intermediate-files -o"\lily!tmpfilename" "\lily!tmpfilename.tmp"}
%D
%D It would be nice, if \type{-ddelete-intermediate-files} would delete all useless intermediate files.
%D
%D Remember: More possible options in \type{lily.scm}.
%D
	 \def\PDF{mtxrun --ifchanged="\lily!tmpfilename.eps" pstopdf "\lily!tmpfilename.eps"}
%D
%D In Lua\TeX buffers are kept in memory
%D in contrast to older flavours of \TeX\ where they're written to a
%D file automatically. We have to require writing to a file explicitely
%D with \type{\savebuffer}.
%D
%D That applies \type{\bufferprefix} automatically, so we can't directly write to our temp directory.
%D
	\ctxlua{ buffers.save("lilypond-\lily!figures") }
	\directlua{ os.rename('\lily!filename.tmp', '\tmpdir/\lily!filename.tmp') }
	\writestatus{LilyPond}{\lily!filename}
	\executesystemcommand{\LP} % compile LilyPond
	\executesystemcommand{\PDF} % convert EPS to PDF
	\directlua{ os.rename('\lily!tmpfilename.pdf', '\lily!img') }
%D
%D TODO: Get the relevant dimension directly from LilyPond,
%D to place the instrument name into the left margin for
%D short snippets as well. (Is that possible at all?)
%D
%D If we are not in the middle of some text, we have to check
%D whether LilyPond created an image that is wider than requested:
%D It places the instrument names in the left margin.
%D
	 \ifvmode
	   \getfiguredimensions[\lily!img]%
	   \leavevmode
	   \!!dimenb\figurewidth
	   \ifdim\!!dimenb>\localhsize
	     \!!dimena=\localhsize
	     \advance\!!dimena-\!!dimenb
	     \noindent\hskip\!!dimena
	   \fi
	 \fi
	 \externalfigure[\lily!img]%
	 \egroup}

%D For short snippets, we define an inline alternative to
%D our start/stop pair:

\def\lilypond        {\dosingleempty\dolilypond}
\def\dolilypond[#1]#2{\startlilypond[#1]#2\stoplilypond}

\stopmodule

\protect \doifnotmode{demo}{\endinput}


%D End of file

\starttext

\startbuffer[sample]
\subject{Telemann, TWV 40:11}
\startlilypond
	\relative c' {
		\set Staff.instrumentName = flute
		\key fis \minor
		\time 3/4
		\partial 4
		r8 fis'8 | fis4. cis8 a cis | fis, a cis fis a fis |
		b, d fis b d b | eis,, gis cis eis gis b, |
		a fis' gis, fis' cis eis | fis,4 r8
		a' gis fis | e gis, a e' fis cis |
		d fis, gis b e d | cis4 \trill r8
		cis b a | b dis e gis cis, b |
		a e' dis fis b, a | gis4 \trill r8
	}
\stoplilypond
\stopbuffer

The input
\typebuffer[sample]
is typeset as
\getbuffer[sample]

\type{\startlilypond} accepts options, as in\crlf
\type{\startlilypond[staffsize=24, linewidth=14cm, indent=5cm, time=no, clef=no]}:
\nobreak
\startlilypond[staffsize=18,linewidth=14cm,indent=5cm,time=no,clef=no]
	\relative c' {
		\key fis \minor
		\time 3/4
		\partial 4
		r8 fis'8 | fis4. cis8 a cis | fis, a cis fis a fis |
		b, d fis b d b | eis,, gis cis eis gis b, |
		a fis' gis, fis' cis eis | fis,4 r8
		a' gis fis | e gis, a e' fis cis |
		d fis, gis b e d | cis4 \trill r8
		cis b a | b dis e gis cis, b |
		a e' dis fis b, a | gis4 \trill r8
	}
\stoplilypond

It is also possible to mix text and music:
\lower 8.2pt\hbox{\lilypond[fragment=true,staffsize=16,time=no,clef=no]{g'}} is a g.

TODO: The \type{\lower} in the example above should not be necessary.

\subject{Starlight (round)}

Here is a sample with lyrics:

\startlilypond
<<
\context Staff = onlyone <<
	\clef treble
	\key a \major
	\time 6/8
	\context Voice = one {
		\relative c'' {
			a4.^\markup{1.} e' |
			e8( d cis) b4. |
			e4.^\markup{2.} d4 d8 |
			cis( b) a b4 e,8 |
			a4 a8 gis( a) b |
			cis4 cis8 b( cis d) |
			cis( d) e e4 e,8 |
			fis4 fis8 gis4.
		}
	}
>>
\lyricsto one \new Lyrics {
	\lyricmode {
		Star -- light, star -- bright,
		first star I see to -- night;
		I wish I may, I wish I might
		have the wish I wish to -- night.
	}
}
>>

\stoplilypond

\stoptext