blob: 3ed002e1d50b0e3e2b84d8c28649f1749ddcb36b (
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
|
%D \module
%D [ file=m-mkivhacks,
%D version=2008.10.20,
%D title=\CONTEXT\ Modules,
%D subtitle=Temporary Compatilibility Hacks,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
%D For Aditya, who needed it for his thesis.
\startluacode
-- -- a lot or work
--
-- mathematics.slots.euler = {
-- [0x03B1] = { "mr", 0x0B }, -- alpha
-- }
--
-- mathematics.slots.euler = table.merge(mathematics.slots.traditional,mathematics.slots.euler)
--
-- versus a quick hack
document.hacks = document.hacks or { }
function document.hacks()
mathematics.families.lcgreek = mathematics.families.mr
mathematics.families.ucgreek = mathematics.families.mr
mathematics.families.vargreek = mathematics.families.mr
mathematics.define(mathematics.slots.euler)
end
\stopluacode
% \usemodule[mkivhacks] \setups{eulermath}
% \definetypeface[modern][mm][math][euler][default]
% \usemathcollection[eul]
% \switchtobodyfont[modern,11pt]
% \starttext
% $\alpha$
% \stoptext
\startsetups eulermath
\ctxlua{document.hacks()}
\stopsetups
\endinput
|