用 LuaTex 制作的闪电符号

用 LuaTex 制作的闪电符号

我正在尝试在文档中使用闪电符号 ↯。我使用luatex。如果我理解正确的话,我会不是需要命令

\unicode{x21af}

但我可以在文档中直接写 ↯。我的问题是该符号没有出现在生成的 pdf 中。因此,我猜想,该符号不包含在 pdf 中使用的字体中。

如果我没有错误,我如何影响所选字体?我应该找到一个带有符号的字体。

\documentclass{article}
\usepackage{graphicx}    
\begin{document}    
(↯)    
\end{document}

答案1

正如您所猜测的,这只需选择包含字形的字体即可。您可以使用 执行此操作fontspec。(更新以使用\newunicodechar@egreg 提供的服务。)

\documentclass{article}
\usepackage{fontspec}
\usepackage{newunicodechar}
\newfontfamily\symbola{Symbola}
\newcommand{\downzigzagarrow}{\begingroup\symbola ↯\endgroup}
\newunicodechar{↯}{\downzigzagarrow}
\begin{document}
Filler text ↯ Filler text
\end{document}

向下之字形箭头符号

相关内容