blob: a4752158be706de8deec7390bd6c16b70c278a96 (
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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{CharisSIL}
[2021/08/19 (Bob Tennent) Style file for CharisSIL fonts.]
\RequirePackage{iftex,xkeyval}
\ifpdftex
\PackageError{charissil}{%
**********************************\MessageBreak
Process using xelatex or lualatex\MessageBreak
**********************************}
\fi
\newcommand*{\CharisSIL@scale}{1}
\DeclareOptionX{scaled}{\renewcommand*{\CharisSIL@scale}{#1}}
\DeclareOptionX{scale}{\renewcommand*{\CharisSIL@scale}{#1}}
\ProcessOptionsX\relax
\RequirePackage{fontspec}
\ifxetex\XeTeXtracingfonts=1\fi
\defaultfontfeatures{
Ligatures = TeX ,
Scale = \CharisSIL@scale ,
Extension = .ttf }
\setmainfont
[ UprightFont = *-Regular,
ItalicFont = *-Italic,
BoldFont = *-Bold,
BoldItalicFont = *-BoldItalic ,
]
{CharisSIL}
\newfontfamily\CharisSIL
[ UprightFont = *-Regular,
ItalicFont = *-Italic,
BoldFont = *-Bold,
BoldItalicFont = *-BoldItalic ,
]
{CharisSIL}
\defaultfontfeatures{}
\endinput
|