150 lines
4.1 KiB
TeX
150 lines
4.1 KiB
TeX
\NeedsTeXFormat{LaTeX2e}
|
|
\ProvidesExplPackage{PrimeTeX/packages/Fonts}{2025-09-18}{1.0}{
|
|
Font definitions.
|
|
}
|
|
|
|
% Loading math fonts takes a long time, so skip it in draft mode.
|
|
\bool_if:NF \g_draft_bool {
|
|
\RequirePackage{notomath}
|
|
}
|
|
|
|
\NewDocumentCommand{\fontpath}{}{./PrimeTeX/fonts}
|
|
|
|
% Define fallback fonts for each main font.
|
|
\directlua {
|
|
luaotfload.add_fallback(
|
|
"RobotoSerif", {
|
|
"NotoSerif:mode=harf;",
|
|
"NotoSansSymbols:mode=harf;",
|
|
"NotoSansSymbols2:mode=harf;",
|
|
"NotoEmoji:mode=harf;",
|
|
}
|
|
)
|
|
|
|
luaotfload.add_fallback(
|
|
"Roboto", {
|
|
"NotoSans:mode=harf;",
|
|
"NotoSansSymbols:mode=harf;",
|
|
"NotoSansSymbols2:mode=harf;",
|
|
"NotoEmoji:mode=harf;",
|
|
}
|
|
)
|
|
|
|
luaotfload.add_fallback(
|
|
"RobotoMono", {
|
|
"NotoMono:mode=harf;",
|
|
"NotoSansSymbols:mode=harf;",
|
|
"NotoSansSymbols2:mode=harf;",
|
|
"NotoEmoji:mode=harf;",
|
|
}
|
|
)
|
|
|
|
luaotfload.add_fallback(
|
|
"RobotoSlab", {
|
|
"NotoSerif:mode=harf;",
|
|
"NotoSansSymbols:mode=harf;",
|
|
"NotoSansSymbols2:mode=harf;",
|
|
"NotoEmoji:mode=harf;",
|
|
}
|
|
)
|
|
}
|
|
|
|
% Main font: Roboto Serif (Light)
|
|
\setmainfont{RobotoSerif}[
|
|
%Path = {\fontpath/},
|
|
Extension = .ttf,
|
|
UprightFont = *-Light,
|
|
BoldFont = *-SemiBold,
|
|
ItalicFont = *-LightItalic,
|
|
BoldItalicFont = *-SemiBoldItalic,
|
|
RawFeature = {fallback=RobotoSerif},
|
|
]
|
|
|
|
% % Sans serif font: Roboto (Medium).
|
|
\setsansfont{Roboto}[
|
|
%Path = {\fontpath/},
|
|
Extension = .ttf,
|
|
UprightFont = *-Medium,
|
|
BoldFont = *-Bold,
|
|
ItalicFont = *-MediumItalic,
|
|
BoldItalicFont = *-BoldItalic,
|
|
RawFeature = {fallback=Roboto},
|
|
]
|
|
|
|
% Monospace font: Roboto Mono
|
|
\setmonofont{RobotoMono}[
|
|
%Path = {\fontpath/},
|
|
Extension = .ttf,
|
|
UprightFont = *-Regular,
|
|
BoldFont = *-Bold,
|
|
ItalicFont = *-Italic,
|
|
BoldItalicFont = *-BoldItalic,
|
|
RawFeature = {fallback=RobotoMono},
|
|
]
|
|
|
|
% Headings & Titles font: Roboto Slab (Semibold).
|
|
\newfontfamily{\sbfamily}{RobotoSlab}[
|
|
%Path = {\fontpath/},
|
|
Extension = .ttf,
|
|
UprightFont = *-SemiBold,
|
|
BoldFont = *-Black,
|
|
% Roboto Slab doesn't have any italic form, so use
|
|
% the Roboto Serif version.
|
|
ItalicFont = RobotoSerif-SemiBoldItalic,
|
|
BoldItalicFont = RobotoSerif-ExtraBoldItalic,
|
|
RawFeature = {fallback=RobotoSlab},
|
|
]
|
|
|
|
% \setmathrm{RobotoSerif}
|
|
|
|
\NewDocumentCommand{\serif}{+m}{{\rmfamily#1}}
|
|
\NewDocumentCommand{\sans}{+m}{{\sffamily#1}}
|
|
\NewDocumentCommand{\mono}{+m}{{\ttfamily{#1}}}
|
|
\NewDocumentCommand{\slab}{+m}{{\sbfamily{}#1}}
|
|
\NewDocumentCommand{\code}{+m}{\mono{\small{}#1}}
|
|
|
|
%------------------------------- Symbol Commands -------------------------------
|
|
|
|
% Line-breaking zero-width space.
|
|
\NewDocumentCommand{\zws}{}{\hspace{0pt}}
|
|
|
|
% Line-breaking dot.
|
|
\NewDocumentCommand{\bdot}{}{.\zws}
|
|
|
|
%--------------------------- MenuKeys Configuration ----------------------------
|
|
|
|
\newmenucolortheme{autoModeColor}{named}{pageColor}{textColor}{textColor}[pageColor][textColor][textColor]
|
|
|
|
\changemenucolortheme{hyphenatepaths}{autoModeColor}
|
|
\changemenucolortheme{shadowedroundedkeys}{autoModeColor}
|
|
\changemenucolortheme{angularmenus}{autoModeColor}
|
|
|
|
\cs_new:Nn \__MenuKeys_path_style: {
|
|
\sffamily\color{\usemenucolor{txt}}\CurrentMenuElement
|
|
}
|
|
|
|
\changemenuelement*{hyphenatepaths}{first}{\__MenuKeys_path_style:}
|
|
\changemenuelement*{hyphenatepaths}{middle}{\__MenuKeys_path_style:}
|
|
\changemenuelement*{hyphenatepaths}{last}{\__MenuKeys_path_style:}
|
|
\changemenuelement*{hyphenatepaths}{single}{\__MenuKeys_path_style:}
|
|
|
|
\renewmenumacro{\directory}[/]{hyphenatepaths}
|
|
\renewmenumacro{\keys}[+]{shadowedroundedkeys}
|
|
\renewmenumacro{\menu}[>]{angularmenus}
|
|
|
|
\RenewDocumentCommand{\ctrlname}{}{$\wedge$}
|
|
|
|
\NewDocumentCommand{\ControlString}{}{Ctrl}
|
|
\NewDocumentCommand{\EnterString}{}{Enter\,\return}
|
|
\NewDocumentCommand{\ShiftString}{}{Shift\,\shift}
|
|
\NewDocumentCommand{\AltString}{}{Alt\,\altmac}
|
|
\NewDocumentCommand{\TabString}{}{Tab\,\tab}
|
|
|
|
\NewDocumentCommand{\ControlKey}{}{\keys{\ControlString}}
|
|
\NewDocumentCommand{\EnterKey}{}{\keys{\EnterString}}
|
|
\NewDocumentCommand{\ShiftKey}{}{\keys{\ShiftString}}
|
|
\NewDocumentCommand{\AltKey}{}{\keys{\AltString}}
|
|
\NewDocumentCommand{\TabKey}{}{\keys{\TabString}}
|
|
|
|
% Suppress warning about obsolete font encodings because we're using Unicode.
|
|
\@tw@hyphenatepaths@warnigfalse %[sic] |