LaTeX 中的 Tironian 注释(简写)

LaTeX 中的 Tironian 注释(简写)

我想知道是否可以在 LaTeX 中使用 Tironian 注释,即 Tiro(公元前 94 - 4 年)引入的简写,如下图所示:

提洛尼亚笔记

有没有可以实现这个功能的包?有人做过这个吗?有没有特定的字体可以插入这些字符?

答案1

如果您只需要一些符号,而不是全部,请将它们作为图形文件获取,jgp 或 png 最适合。我获取了一个 png 字形,并使用以下代码使其可重复使用:

\documentclass{article}

\usepackage{xsavebox}
\usepackage{graphicx}

\xsavebox{termina}{\raisebox{-.6ex}{\includegraphics[width=1.3em]{termina}}}

\begin{document}

This Tironian sign \thetermina refers\\ to termination of words. It may be\\ used as
inline text. 

\end{document}

呈现如下:

在此处输入图片描述

相关内容