答案1
您正在寻找的内容如下:
\documentclass{article}
\usepackage{ amssymb }
\begin{document}
$\ltimes$
\begin{equation}
\ltimes
\end{equation}
\end{document}
产生
另外,供将来参考,请尝试使用解毒。希望我能帮上忙 :-)。祝你假期愉快。
答案2
只是为了好玩,我自己构建了它(没有amssymb
)......适用于各种数学风格。
\documentclass{article}
\usepackage{stackengine,graphicx,scalerel}
\newcommand\altltimes{\mathbin{\stretchrel*{%
|\kern-1.6pt\kern-.5\LMpt\stackengine{0pt}{$\SavedStyle/$}{%
\reflectbox{$\SavedStyle/$}}{O}{c}{F}{F}{L}}{x}}}
\begin{document}
$a\altltimes b + c$
$\scriptstyle a\altltimes b + c$
$\scriptscriptstyle a\altltimes b + c$
\end{document}
如果您喜欢更高的符号,以匹配时间符号的高度,请将其更改{x}
为\times
:
\documentclass{article}
\usepackage{stackengine,graphicx,scalerel}
\newcommand\altltimes{\mathbin{\stretchrel*{%
|\kern-1.6pt\kern-.45\LMpt\stackengine{0pt}{$\SavedStyle/$}{%
\reflectbox{$\SavedStyle/$}}{O}{c}{F}{F}{L}}{\times}}}
\begin{document}
$a\altltimes b + c$
$\scriptstyle a\altltimes b + c$
$\scriptscriptstyle a\altltimes b + c$
\end{document}
答案3
如果你使用unicode-math
那么:
\documentclass[12pt]{article}
\usepackage{unicode-math}
\begin{document}
$\ltimes$
\end{document}