看起来\check{-}
像这样:$\check{-}$
我想输入一些垂直的反映:在水平线下方添加一个“帽子”重音。我怎样才能在下方添加一个帽子重音-
?
答案1
一个穷人的解决方案是使用\scalebox
:
\documentclass[border=5]{standalone}
\usepackage{amssymb}
\usepackage{graphicx}
\makeatletter
\providecommand*{\reflcheck}{%
\mathbin{%
\mathpalette\@reflcheck{}%
}%
}
\newcommand*{\@reflcheck}{%
\vcenter{\hbox{\raisebox{-0.65ex}{\scalebox{1}[-1]{$\m@th\check{-}$}}}}
}
\makeatother
\begin{document}
$\check{-}\reflcheck$
\end{document}
答案2
\documentclass{standalone}
\usepackage{mathabx}
\begin{document}
$\check{-}$ $\barwedge$
\end{document}
还有一个amssymb
版本,其中楔子更高。