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
|
\ProvidesPackage{quattrocento}[%
2012/11/24 (Bob Tennent) Supports Quattrocento(Sans) fonts for all LaTeX engines. ]
\RequirePackage{ifxetex,ifluatex,textcomp}
\newif\ifquattrocento@otf
\ifxetex
\quattrocento@otftrue
\else\ifluatex
\quattrocento@otftrue
\else % [pdf]LaTeX
\quattrocento@otffalse
\fi\fi
\newcommand*{\Quattrocento@scale}{1} % not adjustable
\newcommand*{\QuattrocentoSans@scale}{1}
\RequirePackage{xkeyval}
\DeclareOptionX{scaled}{\renewcommand*{\QuattrocentoSans@scale}{#1}}
\DeclareOptionX{scale}{\renewcommand*{\QuattrocentoSans@scale}{#1}}
\newif\ifquattrocento@rm \quattrocento@rmfalse
\newif\ifquattrocento@sf \quattrocento@sffalse
\newif\ifquattrocento@sfdefault \quattrocento@sfdefaultfalse
\DeclareOptionX{sf}{\quattrocento@sftrue}
\DeclareOptionX{rm}{\quattrocento@rmtrue}
\DeclareOptionX{sfdefault}{\quattrocento@sftrue\quattrocento@sfdefaulttrue}
\DeclareOptionX{type1}{\quattrocento@otffalse}
\ProcessOptionsX\relax
\ifquattrocento@otf
\RequirePackage{fontspec}
\else
\RequirePackage{fontenc,fontaxes}
\fi
\ifquattrocento@rm\else\ifquattrocento@sf\else
\quattrocento@rmtrue\quattrocento@sftrue % both false -> both true
\fi\fi
% Set main and/or sans fonts:
\ifquattrocento@otf
\ifxetex\XeTeXtracingfonts=1\fi
\defaultfontfeatures{
Ligatures = TeX ,
Extension = .otf ,
}
\ifquattrocento@rm
\setmainfont
[ UprightFont = * ,
ItalicFont = *-Italic ,
BoldFont = *-Bold ,
BoldItalicFont = *-BoldItalic ]
{Quattrocento}
\fi
\ifquattrocento@sf
\setsansfont
[ Scale = \QuattrocentoSans@scale ,
UprightFont = * ,
ItalicFont = *-Italic ,
BoldFont = *-Bold ,
BoldItalicFont = *-BoldItalic ]
{QuattrocentoSans}
\fi
% grab the \sfdefault in case it changes subsequently:
\let\quattrocentosffamily\sfdefault
\ifquattrocento@sfdefault
\renewcommand*\familydefault{\quattrocentosffamily}
\fi
\newfontfamily\quattrocento
[ UprightFont = * ,
ItalicFont = *-Italic ,
BoldFont = *-Bold ,
BoldItalicFont = *-BoldItalic ]
{Quattrocento}
\newfontfamily\quattrocentosans
[ Scale = \QuattrocentoSans@scale ,
UprightFont = * ,
ItalicFont = *-Italic ,
BoldFont = *-Bold ,
BoldItalicFont = *-BoldItalic ]
{QuattrocentoSans}
\else % type1
\def\quattrocentofamily{Quattrocento-TLF}
\def\quattrocentosffamily{QuattrocentoSans-TLF}
\ifquattrocento@rm
\renewcommand*\rmdefault{\quattrocentofamily}
\fi
\ifquattrocento@sf
\renewcommand*\sfdefault{\quattrocentosffamily}
\fi
\ifquattrocento@sfdefault
\renewcommand*\familydefault{\quattrocentosffamily}
\fi
\newcommand*\quattrocento{\fontfamily{\quattrocentofamily}\selectfont}
\newcommand*\quattrocentosans{\fontfamily{\quattrocentosffamily}\selectfont}
\fi
% turn off defaults in case other fonts are selected:
\ifquattrocento@otf
\defaultfontfeatures{}
\fi
\endinput
|