LaTeX 中的 Cedi ₵ 符号

LaTeX 中的 Cedi ₵ 符号

如何在 LaTeX 文档中包含塞地符号 ₵?有关此货币符号的更多信息,请访问https://en.wikipedia.org/wiki/Ghanaian_cedi

答案1

在评论的补充中,我建议使用textcomp提供的包来获取所需的符号,而无需触及 CM 字体(默认)符号:

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}
\usepackage{textcomp}
\begin{document}
In text mode
\textcent, \textcentoldstyle, \textcolonmonetary,

In math mode

$\mbox{\textcent}, \mbox{\textcentoldstyle}, \mbox{\textcolonmonetary}$
\end{document}

在此处输入图片描述

相关内容