答案1
说实话,我会避免使用这种不清楚的符号。
\documentclass{article}
\usepackage{graphicx}
\makeatletter
\newcommand\opteq[1]{\mathrel{\mathpalette\opt@eq{#1}}}
\newcommand{\opt@eq}[2]{%
\begingroup
\sbox\z@{$#1#2$}%
\sbox\tw@{\resizebox{!}{.5\ht\z@}{$\m@th#1($}}%
\nonscript\hskip-\wd\tw@
\mkern1mu
\raisebox{-.35\ht\z@}[0pt][0pt]{\resizebox{!}{.5\ht\z@}{$\m@th#1($}}%
\mkern-1mu
{#2}%
\mkern-1mu
\raisebox{-.35\ht\z@}[0pt][0pt]{\resizebox{!}{.5\ht\z@}{$\m@th#1)$}}%
\mkern1mu
\nonscript\hskip-\wd\tw@
\endgroup
}
\makeatother
\newcommand{\leoq}{\opteq{\leq}}
\newcommand{\geoq}{\opteq{\geq}}
\begin{document}
`$A < 0$' is equivalent to `$a_j < 0$, for all $j$'.
`$A \leoq 0$' is equivalent to `$a_j \leoq 0$, for all $j$'.
$A \geoq 0_{x\geoq y\leoq z}$
\end{document}
答案2
您可以使用\lhook
和\rhook
中的组件\hookarrows
。
\def\lowhook#1{\lower.47em\hbox{$#1$}}
\def\LEorL{\mathrel{\lowhook\lhook\kern-.1em{\le}\kern-.08em\lowhook\rhook}}
\def\GEorG{\mathrel{\lowhook\lhook\kern-.08em{\ge}\kern-.1em\lowhook\rhook}}
$A \LEorL 0, A \GEorG 0$
\bye