Unicode 三维顶部发光向右等边箭头符号 XeLaTeX

Unicode 三维顶部发光向右等边箭头符号 XeLaTeX

如何在 XeLaTeX (Unicode 字符 11162) 中排版 ⮚ 字符?

答案1

只需加载带有符号的字体

\documentclass{article}
\usepackage{fontspec}
\newfontfamily\symbola{Symbola}
\begin{document}

{\symbola\symbol{"2B9A}}

\end{document}

在此处输入图片描述

答案2

解决了:

\documentclass{article}
\usepackage{ifthen}

\font\myfont = "Wingdings"

\begin{document}%
\raggedright

\myfont\XeTeXglyph190

\end{document}

答案3

\documentclass{article}
\usepackage{pifont}
\begin{document}

\ding{226}


\end{document}

有关更多符号,请参阅页面{https://en.wikibooks.org/wiki/LaTeX/Special_Characters}

相关内容