绘制字形的容器框

绘制字形的容器框

我正在做一项实际工作,我需要将一些字体的字形放在包含它们的框中。我指的不是普通的框,而是包含字形并允许您查看其在框内位置的框。有一些直接的函数可以获取它,或者需要使用其他工具。

答案1

这是一种可以显示基线的方法:

\documentclass{article}

\newlength{\glyphwd}
\newcommand{\showglyph}[1]{%
  \begingroup
  \settowidth\glyphwd{#1}%
  \setlength{\fboxrule}{0.1pt}% hairline
  \setlength{\fboxsep}{-0.05pt}%
  \makebox[0pt][l]{\vrule height 0.05pt depth 0.05pt width \glyphwd}%
  \fbox{#1}%
  \endgroup
}

\begin{document}

\showglyph{Q} \showglyph{\LARGE g} \showglyph{\LARGE\itshape f}

\end{document}

在此处输入图片描述

相关内容