我想使用该fontspec
包来更改字体系列。
我在同一个文档中使用四种不同的字体,并想根据我的 Windows 机器上安装的字体创建字体系列,使用字体开关和字体功能来更改字体。
答案1
非常基本的例子。fontspec
非常强大。
平均能量损失
\documentclass{article}
\usepackage{xcolor}
\usepackage{fontspec}
\setmainfont{Noto Serif}
\setsansfont{Noto Sans}
\setmonofont{Noto Sans Mono}
\newfontfamily{\fcyc}{cyklop}
\newfontfamily{\falg}{AlgolRevived}[Scale=1.5,Color=red]
\newfontfamily{\fsong}{FandolSong}
\begin{document}
\Large
This is the default roman text for the document (the main font).
{\sffamily This is the sans font. 123456}
{\ttfamily This is the mono-spaced font: 123 456 789.}
Here is an example of a font-switch: \falg ABC abc 123 \normalfont and then switch back to normal font.
{\fcyc Abc cyklop font} -- this font is restricted to a group with \{ \}.
Some random characters in FandolSong font: \fsong 一丢人伺\normalfont
Back to normal font again.
\end{document}