我需要在我的乳胶编辑器中使用以下字体:
https://blazetype.eu/typecatalogue/apocalypse
有人知道在我的 Latex 编辑器中使用 Apoc 字体系列的包或脚本的名称吗?
我在用https://www.texstudio.org/作为乳胶编辑器。
提前致谢。
答案1
这个例子可以帮助你入门。
- 下载 Apoc 字体试用样本
Apoc-Trial-OTFTTF.zip
APOC
在要编译的目录中创建一个子目录Test_Apoc.tex
- 将收到的文件放入该子目录中
.otf
。 - 在 TeXstudio 中加载
Test_Apoc.tex
。(任何其他 LaTeX 编辑器都可以)。 Buid & View
如果使用 TeXstudio,请使用或编译文件F5
。
这是文件Test_Apoc.tex
。必须使用xelatex
或lualatex
。
%% File Test_Apoc.tex
% !TeX TS-program =xelatex
\documentclass{article}
\usepackage{fontspec}
\newfontfamily\apocfamily[%
Path =./APOC/,%
Extension = .otf,%
UprightFont=*-Regular,%
BoldFont = *-Bold,%
ItalicFont=*-RevelationsItalic,%
BoldItalicFont = *-BoldItalic,
]{ApocLCTrial}
\begin{document}
\begin{center}
The Apoc(alypse) Huge normal font \\\bigskip
{\apocfamily\Huge As I walked through the deep dark woods, we sang. }
\end{center}
\begin{center}
The Apoc(alypse) Huge italic font \\\bigskip
{\apocfamily\itshape\Huge As I walked through the deep dark woods, we sang. }
\end{center}
\begin{center}
The Apoc(alypse) Large normal font \\\bigskip
{\apocfamily\Large As I walked through the deep dark woods, we sang. } % \punct{}\dashes\\ }
\end{center}
\begin{center}
The Apoc(alypse) Large italic font \\\bigskip
{\apocfamily \itshape\Large As I walked through the deep dark woods, we sang. } % \punct{}\dashes\\ }
\end{center}
\begin{center}
The font Apoc(alypse) in its normal size \\ \bigskip
{\apocfamily As I walked through the deep dark woods, we sang.} \\\bigskip
and the Computer Modern Roman for comparison \\
As I walked through the deep dark woods, we sang.
\end{center}
\bigskip
End of the test file.
\end{document}