In type-imp-texgyre.mkiv,
is bonum,bookman repeated twice an error?
\starttypescript [\s!serif,\s!sans]
[adventor,bonum,bookman,heros,helvetica,pagella,palatino,bonum,bookman,schola,schoolbook,termes,times]
Alan
Hi,
should the \checkedstrippedcsname accept arguments in braces like shown
in the source example (line 3473 in syst-aux.mkiv) or was this dropped.
%% begin example
\starttext
\checkedstrippedcsname\foo
\checkedstrippedcsname{\foo}
\checkedstrippedcsname ABC
\checkedstrippedcsname{ABC}
\stoptext
%% end example
Wolfgang
Hi Hans,
the "=>" in the apply tag has to be lowered to avoid a collision with
the index number.
\unexpanded\def\showSETUPapply#1%
{\showSETUP{#1}
- {[..=>..]}
- {[..,..=>..,...]}}
+ {[..\lower.25ex\hbox{=>}..]}
+ {[..,..\lower.25ex\hbox{=>}..,...]}}
Wolfgang
Hi Hans,
delimiters like the \to in \setwidthof command get numbered and appear
in the argument list which shouldn’t happen (see attached example).
As there are more of these command (e.g. \from or \with) something like
<cd:macro value="to"/> instead of <cd:to/> would be better.
Wolfgang
Hi,
local function check_name(data,result,filename,modification,suffix,subfont)
-- shortcuts
local specifications = data.specifications
-- fetch
[...]
fontname = fontname or fullname or familyname or filebase --
maybe cleanfilename
fullname = fullname or fontname
familyname = familyname or fontname
-- we do these sparse -- todo: check table type or change names in
ff loader
local units = result.units or 1000 -- can be zero too
local designsize = result.designsize or 0
- local minsize = result.mindesign or 0
- local maxsize = result.maxdesign or 0
+ local minsize = result.minsize or 0
+ local maxsize = result.maxsize or 0
local angle = result.italicangle or 0
local pfmwidth = result.pfmwidth or 0
local pfmweight = result.pfmweight or 0
--
[...]
}
end
Wolfgang