如何显示 Hoefler 文本装饰字形

如何显示 Hoefler 文本装饰字形

我正在尝试使用 Hoefler Text F043 和 F044 来分隔文档中的各部分,但没有在 XeLaTex 和 MacTex 2014 中管理它。我试过:

\char"61507

但那不起作用。我试过:

\DeclareUnicodeCharacter{f043}{\myglyph}
\myglyph

而且那也不起作用。实际上,\DeclareUnicodeCharacterundefined control sequence- 我可能必须搜索如何使用它...无论如何,将这些装饰物插入我的文档中的最佳方法是什么?

答案1

以下代码可使用 MacTeX2014 中的 LuaLaTeX 或 XeLaTeX 运行:

\documentclass{article}
\usepackage{fontspec} 
\setmainfont{Hoefler Text}
\newfontfamily{\HTOrn}{HoeflerText-Ornaments}
\begin{document}
{\HTOrn \char"F043 \char"F044}
\end{document}

在此处输入图片描述

您可以创建一个名为的宏,\SeparateTwoSections以简化在段落、章节等之间插入此视觉分隔符:

\newcommand\SeparateTwoSections{\begin{center}\HTOrn\char"F043\char"F044\end{center}}

相关内容