Unicode 字符U+15D0被发现是一种表示值 50 的古老形式,后来与罗马系统中的“L”相关联,类似于\|/
。
我正在准备一篇关于数字的历史文本,想插入这个字符来装饰它,但我找不到可以用 (xe)Latex 编译的等效物。
有人有想法吗?
答案1
答案2
答案3
答案4
两个版本,带picture
模式。
\documentclass{article}
\usepackage{pict2e}
\newcommand{\ancientLround}{%
\begingroup
\settoheight{\unitlength}{V}%
\begin{picture}(1.2,1)
\roundjoin\roundcap
\linethickness{0.6pt}
\polyline(0.1,1)(0.6,0)(0.6,1)(0.6,0)(1.1,1)
\end{picture}%
\endgroup
}
\newcommand{\ancientL}{%
\begingroup
\settoheight{\unitlength}{V}%
\begin{picture}(1.2,1)
\roundjoin
\linethickness{0.6pt}
\polyline(0.1,0.97)(0.6,0)(0.6,1)
\polyline(0.6,1)(0.6,0)(1.1,0.97)
\end{picture}%
\endgroup
}
\begin{document}
Here is \ancientL{} (a Roman numeral).
Here is \ancientLround{} (a Roman numeral).
\end{document}