药剂师符号

药剂师符号

[如何制作 | 在哪里] 使用 LaTeX 制作盎司、德拉克马和顾忌的药剂计量符号?

药剂师盎司

药剂师德拉克马

顾忌

答案1

如果你使用 XeLaTeX 或 LuaLaTeX,你可以加载一些具有这些符号的 unicode 字体,例如,Lucida Sans Unicode,并通过以下方式使用符号:\char⟨unicode code point number⟩

\documentclass{article}
\usepackage{fontspec}

\setsansfont{Lucida Sans Unicode}

\begin{document}

OUNCE SIGN is at U+2125: \textsf{\char"2125}

drachm-symbol = LATIN SMALL LETTER EZH is at U+0292: \textsf{\char"0292}

SCRUPLE is at U+2108: \textsf{\char"2108}

pound = L B BAR SYMBOL is at U+2114 \textsf{\char"2114}

\end{document}

如果您使用的操作系统/键盘提供这样的功能,您也可以直接输入这些符号,而不必使用\char

在此处输入图片描述

答案2

包含这些字符的一种免费字体是Junicode字体。使用 XeLaTeX 或 LuaLaTeX 进行编译。

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Junicode}
\begin{document}
Ounce: ℥

Drachm: Ȝ

Scruple: ℈
\end{document}

代码输出

相关内容