带有美元符号但没有线条的字体

带有美元符号但没有线条的字体

有没有一种带有美元符号的字体,只包含 S 上方和下方的线条部分?Adobe 说它是 Univers,但 $ 不匹配。

答案1

TeX Gyre Adventor(类似于 Avantgarde)

\documentclass{article}
\usepackage{tgadventor}
\begin{document}
\textsf{\$}
\end{document}

TeX Gyre Adventor

仅使用符号而不改变整个无衬线字体:

\documentclass{article}
\newcommand*{\mydollar}{%
  \begingroup\fontfamily{qag}\$\endgroup
}
\begin{document}
\mydollar
\end{document}

LuaTeX/XeTeX 版本:

\documentclass{article}
\usepackage{fontspec}
\newfontfamily\tgadventor{TeX Gyre Adventor}
\newcommand*{\mydollar}{%
  \begingroup\tgadventor\$\endgroup
}
\begin{document}
\mydollar
\end{document}

小字体概述

\documentclass{article}
\usepackage{fontspec}
\begin{document}
\def\x#1{%
  #1:& \fontspec{#1}\$\\
}
\begin{tabular}{l@{ }l}
\x{TeX Gyre Adventor}
\x{TeX Gyre Chorus}
\x{Source Code Pro}
\x{Source Sans Pro}
\end{tabular}
\end{document}

结果

答案2

一些 Sans 和 Monospace 字体有它:

\documentclass{article}
\usepackage{fontspec}
\setsansfont{Roboto}
\setmonofont[Scale=MatchUppercase]{Ubuntu}
\begin{document}

\textsf{\$}\texttt{\$}

\end{document}

在此处输入图片描述

答案3

一些可能性:Calibri、Candara、Courier、Courier CE、Courier New、Futura、Gr Plain、Impact、Kino MT、Kohinoor、KohinoorBangla、Lithos Pro Regular、Myriad Pro、Myriad Pro Cond、Myriad Pro Light、Playbill、Prestige Elite Std Bold、Roboto、Seravek、Skia、TeX Gyre Adventor、TeX Gyre Cursor。

这些字体很多都是 OpenType 的;您需要使用 XeLaTeX 或 LuaLaTeX 以及软件包fontspec才能使用它们。

答案4

你可以这样回答这类问题识别字体。在首页的“按外观分类的字体”选项卡中,单击“有限的字母集?”。键入$并选择该字符所需的外观。Identifont 知道4448 种此类字体。然后,您将获得一个“流行”匹配字体的列表,并且可以通过描述字体的其他特征来进一步细化列表。Identifont 会按照预定义的顺序询问问题,但您可以通过单击“不确定”来跳过一些问题。

这种方法的局限性在于没有诸如“在我的 TeX 安装上可用”或“免费提供”之类的过滤器。

相关内容