我想要一个垂直线,但在数学模式下它看起来太大了。我只想要一个与字母高度相同的小 |。
答案1
您可以使用\rule{.4pt}{1ex}
它将位于基线上并且很高1ex
。当然,请调整1ex
以满足您的“小”要求。这是一个通过宏显示用例的小示例,\vertrule[<len>]
其中<len>
默认为1ex
。
\documentclass{article}
\newcommand{\vertrule}[1][1ex]{\rule{.4pt}{#1}}
\begin{document}
You can use \vertrule{} (compared to $|$) which will sit on the baseline and be \verb|1ex| high.
Of course, adjust \verb|1ex| to suit your "small" requirement using \vertrule[1.5ex].
\end{document}