答案1
一种解决方案是使用 制作您自己的十字和双十字符号\rule
。然后您可以使用\ooalign
将十字与您选择的刻度标记叠加在一起。以下是\checkmark
来自该amssymb
包的一个示例。
\documentclass{article}
\usepackage{amssymb,graphicx}
\newcommand{\onemark}{\raisebox{.7ex}{\rotatebox[origin=c]{135}{\rule{.4em}{.1ex}}}}
\newcommand{\twomark}{\raisebox{.5ex}{\rotatebox[origin=c]{135}{\rule{.4em}{.1ex}\hspace{-.4em}\rule[.4ex]{.4em}{.1ex}}}}
\newcommand{\Tick}{\checkmark}
\newcommand{\Ticka}{{\ooalign{\Tick\cr\hfil\onemark\hfil\cr}}}
\newcommand{\Tickb}{{\ooalign{\Tick\cr\hfil\twomark\hfil\cr}}}
\begin{document}
\Tick\Ticka\Tickb
\end{document}
您可以根据自己的喜好调整十字的长度 ( .4em
)、厚度 ( .1ex
) 和间距 ( )。我使用了和单位,因此刻度线将调整为或其他尺寸命令。.4ex
ex
em
\Large