summaryrefslogtreecommitdiff
path: root/tex/context/base/typo-krn.mkiv
blob: e1e404a7bef8cc522833177d52326e23f1e65f92 (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
%D \module
%D   [       file=typo-krn,
%D        version=2009.03.27, % code moved from core-spa.mkiv
%D          title=\CONTEXT\ Typesetting Macros,
%D       subtitle=Spacing,
%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.

\writestatus{loading}{ConTeXt Typesetting Macros / Kerning}

\unprotect

\registerctxluafile{typo-krn}{1.001}

\definesystemattribute[kern][public]

% more
%
% {\setcharacterkerning[extrakerning]\input davis\relax}

\installcorenamespace{characterkerning}

\installcommandhandler \??characterkerning {characterkerning} \??characterkerning

\unexpanded\def\setcharacterkerning[#1]%
  {\edef\currentcharacterkerning{#1}%
   \ifx\currentcharacterkerning\s!reset
     \resetcharacterkerning
   \else
     \typo_kerning_set
   \fi}

% \def\typo_kerning_set
%   {\ctxcommand{setcharacterkerning(\characterkerningparameter\c!factor)}}

\def\typo_kerning_set
  {\usecharacterkerningstyleandcolor\c!style\c!color % goodie, maybe also strut
   \ctxcommand{setcharacterkerning(\characterkerningparameter\c!factor)}}

\unexpanded\def\resetcharacterkerning % fast one
  {\attribute\kernattribute\attributeunsetvalue}

\appendtoks
    \resetcharacterkerning
\to \everyresettypesetting

\definecharacterkerning [extrakerning] [\c!factor=.125] % used in manuals

%D Added after discussion on list (posted by WS, adapted abit by HH)
%D \unknown\ this needs to be interfaced (\type {\v!kerncharacters}).
%D
%D \starttyping
%D \setuphead[section][style=\sca,textstyle={\kerncharacters[.5]}] \section{Section}
%D \stoptyping
%D
%D We could combine this with the previous definition command but
%D then we always would get a command defined which is not beforehand
%D a good idea.

\def\v!kerncharacters{kerncharacters} % no time now for translations

\definecharacterkerning [\v!kerncharacters] [\c!factor=.125]

% Here we need to keep the groupedcommand solution as it is
% used as modifier.

\unexpanded\def\kerncharacters
  {\doifnextoptionalelse\typo_kerning_apply_yes\typo_kerning_apply_nop}

\def\typo_kerning_apply_yes[#1]%
  {\groupedcommand{\typo_kerning_apply_yes_indeed{#1}}\donothing}

\def\typo_kerning_apply_nop
  {\groupedcommand\typo_kerning_apply_nop_indeed\donothing}

\def\typo_kerning_apply_yes_indeed#1%
  {\let\currentcharacterkerning\v!kerncharacters
   \setupcurrentcharacterkerning[\c!factor=#1]%
   \typo_kerning_set}

\def\typo_kerning_apply_nop_indeed
  {\let\currentcharacterkerning\v!kerncharacters
   \typo_kerning_set}

\protect \endinput