排版 Unicode 控件图片

排版 Unicode 控件图片

我有排版的具体需求Unicode 控制图片。不幸的是,我只能使用 pdfTeX。有什么方法可以插入这些符号吗?

答案1

你可以为每个宏制作宏,例如

在此处输入图片描述

\documentclass{article}
\newcommand\Znul{\begin{picture}(10,10)
\tiny\sffamily
\put(0,6){N}
\put(4,3){U}
\put(7,0){L}
\end{picture}}
\newcommand\Zsoh{\begin{picture}(10,10)
\tiny\sffamily
\put(0,6){S}
\put(4,3){O}
\put(7,0){H}
\end{picture}}

\begin{document}

null is \Znul,
start of heading is \Zsoh,
rest are left as an excercise for the reader.
\end{document}

相关内容