我想写一个英镑符号如此处复制, 从这篇关于#符号的文章。注意复制牛顿的手写体,说明了从 lb 到 # 的发展。
我如何获得我想要使用的符号?
答案1
它来自marvosym
包裹。注意:解毒正确识别该符号。
\documentclass{article}
\usepackage{marvosym}
\begin{document}
\Pfund
\end{document}
答案2
如果你有想要包含的矢量图(这里,pfund.svg
),您可以在 Inkscape 中打开它并将其保存为.pdf
文件。您需要选择将页面大小设置为导出对象的大小的选项,以便字形周围没有边框,并且背景是透明的。
然后,您可以使用 将图像作为图形包含在内graphicx
。此代码会自动将其缩放到当前字体中大写字母的高度。
\documentclass{article}
\tracinglostchars=2
\usepackage{graphicx} % For \includegraphics
\newlength{\capheight}
\newcommand\librapondo{%
\settoheight{\capheight}{H}%
\includegraphics[height=\capheight]{pfund.pdf}%
}
\begin{document}
\section*{The {\librapondo} Symbol}
Sir Isaac Newton wrote the {\textsterling} symbol as {\librapondo}.
{\footnotesize A smaller {\librapondo}.}
\end{document}
答案3
该符号包含在marvosym.ttf
字体中位置 163 处。例如,在 OpTeX 中我们可以执行以下操作:
\fontfam[lm]
\font\tenmarvosym=[marvosym.ttf]
\def\pfund{{\tenmarvosym\resizethefont\char163}}
\sec The \pfund{} symbol
Sir Isaac Newton wrote the £ symbol as \pfund.
{\typosize[8/] A smaller \pfund.}
\bye