-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.sty
More file actions
67 lines (56 loc) · 2.1 KB
/
Copy pathheader.sty
File metadata and controls
67 lines (56 loc) · 2.1 KB
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
%%%%%%%%%%%%%%%%%
%% Fontawesome 6 [LaTeX] - v1.0.1 - Naveen Dharmathunga (dasheenaveen@outlook.com)
%% ================================================================================
%% It may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%% The latest version of this license is in http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of LaTeX
%% version 2003/12/01 or later.
%% ================================================================================
%% Additionally, this derived work is licensed under the MIT License.
%% See LICENSE.txt file in the root directory for more information.
%%%%%%%%%%%%%%%%
%% Identify this package.
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{fontawesome/6}[2024/07/29 v1.0.1 font awesome icons]
%% Requirements to use.
\RequirePackage{fontspec}
%% Configure a directory location for fonts(default: 'fonts/')
\newcommand*{\fontdir}[1][fontawesome/fonts/]{\def\@fontdir{#1}}
\fontdir % Set the default font directory
%% Define pro option
\DeclareOption{pro}{
%% Define shortcut to load the Font Awesome pro font.
\newfontfamily\FA[
Path=\@fontdir,
UprightFont=*-Regular-400,
ItalicFont=*-Light-300,
BoldFont=*-Solid-900,
]{Font Awesome 6 Pro}
}
\ProcessOptions\relax
%% Define shortcut to load the Font Awesome font for brands.
\newfontfamily{\FABrands}[Path=\@fontdir]{Font Awesome 6 Brands-Regular-400}
%% Define shortcut to load the Font Awesome font.
\@ifundefined{FA}{%
\newfontfamily\FA[
Path=\@fontdir,
UprightFont=*-Regular-400,
BoldFont=*-Solid-900,
]{Font Awesome 6 Free}
}{}
%% Generic command displaying an icon by its name.
\newcommand{\faIcon}[1]{%
\ifcsname fa@#1\endcsname
\csname fa@#1\endcsname
\else
\textbf{[Unknown Icon: #1]}
\fi
}
%% Using this command, you can define a new icon.
%% Example: \faDefineIcon{apple}{\FABrands\symbol{"F179}} % U+F179: Apple
\newcommand{\faDefineIcon}[2]{%
\expandafter\def\csname fa@#1\endcsname{#2}%
}
%% Definitions of the icons go here.