在 TikZ 中创建模仿字体 *Ultima Underworld II* 和 *Dungeon Master* 中字符的符号

在 TikZ 中创建模仿字体 *Ultima Underworld II* 和 *Dungeon Master* 中字符的符号
  • 我想在 TikZ 中创建一些符号。
  • 这些符号应该模仿两种非常特殊的字体的字符集。
  • 这些字体被称为创世纪地下世界 II地下城主
  • 我附加了一些显示字体外观的图片。
  • 我想稍后在普通文本中使用这些符号。

runes of ultima underworld 1 and 2

another example

答案1

  • 这是一个简单的代码示例。
  • 你是这个意思吗?
  • 该代码远非最佳,但也许它可以帮助您提出更具体的问题。
  • 我不知道是否baseline=(char.base)baseline=0(见这里例如)。

\documentclass{article}
\usepackage{tikz}

% Code is loosely based on https://tex.stackexchange.com/questions/295360/    

% DRM --> Dungeon Master Runes
% 'em' is a length unit in LaTeX that is relative to the current font.
% See https://tex.stackexchange.com/questions/8260/ for (much) more information

\newcommand\DMRAn{% <-- needed
\tikz[x=0.75em,y=0.75em,baseline=0]
\draw(0,0)--(0,1)--(0.7,0.5)(0,0.5)--(0.7,0.0);% <-- needed
}

\newcommand\DMRBet{% <-- needed
\tikz[x=0.75em,y=0.75em,baseline=0]
\draw(0,0)--(0,1)--(1,0.75)--(0,0.5)--(1,0.25)--(0,0);% <-- needed
}

\begin{document}
ABC \DMRAn\ DEF \DMRBet\

\end{document}

enter image description here


也许你可以稍后将其与模拟手绘线条看起来像手写的:)。

相关内容